VGridControlBase.ShowFindPanel() Method
Displays the Find Panel.
Namespace: DevExpress.XtraVerticalGrid
Assembly: DevExpress.XtraVerticalGrid.v24.1.dll
NuGet Packages: DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid
Declaration
Example
To open and focus the panel when the control is displayed for the first time, call the ShowFindPanel()
method asynchronously.
this.Load += Form1_Load;
private void Form1_Load(object sender, EventArgs e) {
vGridControl1.BeginInvoke(new Action(vGridControl1.ShowFindPanel));
propertyGridControl1.BeginInvoke(new Action(propertyGridControl1.ShowFindPanel));
}
See Also