Skip to main content

ColumnView.ShowFindPanel() Method

Displays the Find Panel.

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v23.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

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));
}
See Also