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
Property Value
| Type | Default | Description |
|---|---|---|
| Boolean | 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