wpf-devexpress-dot-xpf-dot-grid-dot-dataviewbase-12d2aa66.md
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
public bool AllowFilterPanelNavigation { get; set; }
Public Property AllowFilterPanelNavigation As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | false |
true to allow users to move focus between the view and the Filter Panel; otherwise, false.
|
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