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

DataViewBase.ShowSearchPanelNavigationButtons Property

Gets or sets whether to show navigation buttons in the grid’s search panel.

Namespace: DevExpress.Xpf.Grid

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

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Grid.Core, DevExpress.Wpf.Grid.Core

Declaration

public bool ShowSearchPanelNavigationButtons { get; set; }

Property Value

Type Default Description
Boolean false

true, if navigation buttons are displayed in the search panel; otherwise, false.

Remarks

Tip

Topic: Search

Navigation buttons allow users to navigate through search results. Set the ShowSearchPanelNavigationButtons property to true to show navigation buttons in the Search Panel.

You can navigate search results in code by calling the DataViewBase.IncrementalSearchMoveNext and DataViewBase.IncrementalSearchMovePrev methods.

The grid views support search result navigation via commands: DataViewCommandsBase.IncrementalSearchMoveNext and DataViewCommandsBase.IncrementalSearchMovePrev.

Note

The ShowSearchPanelFindButton property is not in effect when the ShowSearchPanelNavigationButtons property is true.

See Also