windowsforms-devexpress-dot-xtraverticalgrid-dot-vgridcontrolbase-53bd2bfc.md
Displays the Find Panel.
Namespace : DevExpress.XtraVerticalGrid
Assembly : DevExpress.XtraVerticalGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Navigation, DevExpress.Win.VerticalGrid
public void ShowFindPanel()
Public Sub ShowFindPanel
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));
}
AddHandler Me.Load, AddressOf Form1_Load
Private Sub Form1_Load(ByVal sender As Object, ByVal e As EventArgs)
vGridControl1.BeginInvoke(New Action(AddressOf vGridControl1.ShowFindPanel))
propertyGridControl1.BeginInvoke(New Action(AddressOf propertyGridControl1.ShowFindPanel))
End Sub
See Also