Hi All,
I am using Telerik RadGridView with filters. When clicking the filter icon for each column, filter box appears. When I press ALT+TAB then my application get minimizes but the filter reamins in the screen.
Can anyone helps me how to minimize the filter box when we tab outs. Below I have pasted the RadGridView in Xaml.
<telerik:RadGridView x:Name="rdgView" EnableRowVirtualization="False" DataLoadMode="Synchronous"
UseLayoutRounding="True" SnapsToDevicePixels="True" RenderOptions.EdgeMode="Aliased"
telerik:TouchManager.IsTouchHitTestVisible="False" IsReadOnly="False" CanUserInsertRows="{Binding InsertNewRow}"
AutoGenerateColumns="False" ColumnWidth="*" ShowGroupPanel="False" ItemsSource="{Binding EmployeeCollection,Mode=TwoWay}"
CanUserSortColumns="True" Height="Auto" VerticalAlignment="Top"
IsSynchronizedWithCurrentItem="True"
VirtualizingPanel.VirtualizationMode="Recycling" ScrollViewer.VerticalScrollBarVisibility="Auto"
ScrollViewer.HorizontalScrollBarVisibility="Auto" CanUserFreezeColumns="True" Margin="10,5,10,0"
telerik:StyleManager.Theme="Transparent"
Grid.Row="1" GroupRenderMode="Flat" NewRowPosition="Top"
DistinctValuesLoading="rdgView_DistinctValuesLoading"
>