Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ShowSearchPanelMode Enum

Lists values that specify when the Search Panel is displayed.

Namespace: DevExpress.Xpf.Grid

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

NuGet Package: DevExpress.Wpf.Grid.Core

#Declaration

public enum ShowSearchPanelMode

#Members

Name Description
Default

Never if the GridControl is bound to a virtual source; otherwise, HotKey.

HotKey

Ctrl + F - Invokes the Search Panel. Ensure that no cell editor is opened before invoking the Search Panel. Otherwise, the shortcut will be intercepted by the in-place editor.

The Close button (if displayed) hides the Search Panel.

Esc - Clears the search box. If the search box is empty, pressing Esc closes the Search Panel.

Always

The Search Panel is always visible, it cannot be hidden by an end-user. The close button is hidden.

Never

The Search Panel is hidden and cannot be shown by the end-user.

#Related API Members

The following properties accept/return ShowSearchPanelMode values:

#Remarks

The values listed by this enumeration are used to set the DataViewBase.ShowSearchPanelMode property’s value.

See Also