Skip to main content
A newer version of this page is available. .

DataViewBase.ShowFilterPanelMode Property

Gets or sets when the Filter Panel is displayed within a View. This is a dependency property.

Namespace: DevExpress.Xpf.Grid

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

Declaration

public ShowFilterPanelMode ShowFilterPanelMode { get; set; }

Property Value

Type Description
ShowFilterPanelMode

A ShowFilterPanelMode enumeration value that specifies when a View displays the Filter Panel.

Available values:

Name Description
Default

The filter panel is shown when data is filtered. Otherwise, the filter panel is hidden.

ShowAlways

The filter panel is always shown at the bottom of the view.

Never

The filter panel is hidden.

Remarks

By default, the Filter Panel is automatically shown at the bottom of the View after a filter has been applied. Removing the filter hides this panel. The filter panel displays a string which specifies the current filter criteria, and contains buttons to disable/enable and clear the filter. To make this panel always visible or always hidden, use the ShowFilterPanelMode property.

To learn more, see Regular and Checked Drop-down Filters.

The following code snippets (auto-collected from DevExpress Examples) contain references to the ShowFilterPanelMode property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also