Back to Devexpress

DataViewBase.AllowFilterPanelNavigation Property

wpf-devexpress-dot-xpf-dot-grid-dot-dataviewbase-12d2aa66.md

latest2.1 KB
Original Source

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

csharp
public bool AllowFilterPanelNavigation { get; set; }
vb
Public Property AllowFilterPanelNavigation As Boolean

Property Value

TypeDefaultDescription
Booleanfalse

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:

xaml
<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

DataViewBase Class

DataViewBase Members

DevExpress.Xpf.Grid Namespace