Skip to main content

DataViewCommandsBase.HideSearchPanel Property

Hides the Search Panel.

Namespace: DevExpress.Xpf.Grid

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

NuGet Package: DevExpress.Wpf.Grid.Core

Declaration

public ICommand HideSearchPanel { get; }

Property Value

Type Description
ICommand

A command implementing the ICommand.

Remarks

By default, an end-user can show and hide the Search Panel when required. To display the Search Panel, an end-user should press CTRL+F or select the ‘Show Search Panel’ item of a column’s context menu. To hide the Search Panel, an end-user should do one of the following: click the Close button (if visible), use ESC (the first press clears the search box; the second press closes the Search Panel) or select the ‘Hide Search Panel’ item of a column’s context menu.

To specify when the Search Panel should be displayed within a View, use the DataViewBase.ShowSearchPanelMode property.

See Also