ColumnView.ShowFindPanel() Method
Displays the Find Panel.
Namespace: DevExpress.XtraGrid.Views.Base
Assembly: DevExpress.XtraGrid.v22.2.dll
NuGet Package: DevExpress.Win.Grid
Declaration
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