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

ColumnView.ShowFindPanel() Method

Displays the Find Panel.

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v20.2.dll

NuGet Package: DevExpress.Win.Grid

Declaration

public virtual void ShowFindPanel()

Example

To open and focus the panel when the control is displayed for the first time, call the ShowFindPanel() method asynchronously.

gridControl1.Load += gridControl1_Load;

private void gridControl1_Load(object sender, EventArgs e) {
    GridControl gridControl = sender as GridControl;
    GridView gridView = gridControl.MainView as GridView;
    if (gridView != null)
        gridControl.BeginInvoke(new Action(gridView.ShowFindPanel));
}

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ShowFindPanel() method.

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