Skip to main content
All docs
V25.2
  • DataViewBase.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.Grid

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

    NuGet Package: DevExpress.Wpf.Grid.Core

    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:

    <dxg:GridControl ...>
        <dxg:GridControl.View>
            <dxg:TableView AllowHeaderNavigation="True"
                           AllowFilterPanelNavigation="True"/>
        </dxg:GridControl.View>
    </dxg:GridControl>
    

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

    See Also