Skip to main content
All docs
V25.2
  • FilteringPanelControl.AllowFilterPanelNavigation Property

    Gets or sets whether users can move focus between the view and the Filter Panel. This is a dependency property.

    Namespace: DevExpress.Xpf.Core.FilteringUI

    Assembly: DevExpress.Xpf.Grid.v25.2.dll

    Declaration

    public bool AllowFilterPanelNavigation { get; set; }

    Property Value

    Type Default Description
    Boolean false

    true to allow users to move focus between the view and the Filter Panel; otherwise, false.

    Remarks

    The following code example enables AllowHeaderNavigation and AllowFilterPanelNavigation properties to allow users to navigate through column headers and Filter Panel elements using shortcuts:

    <Grid ... >
        <Grid.RowDefinitions>
            <RowDefinition Height="Auto"/>
            <RowDefinition Height="*"/>
        </Grid.RowDefinitions>
    
        <dxfui:FilteringPanelControl Grid.Row="0"
                                     Context="{Binding ElementName=grid, Path=FilteringContext}"
                                     AllowFilterPanelNavigation="True"/>
    
        <dxg:GridControl x:Name="grid" Grid.Row="1" ItemsSource="{Binding Data}">
            <dxg:GridControl.View>
                <dxg:TableView AllowHeaderNavigation="True"
                               ShowFilterPanelMode="Never"/>
            </dxg:GridControl.View>
        </dxg:GridControl>
    </Grid>
    

    Refer to the following help topic for more information: Filter Panel Keyboard Actions.

    See Also