Back to Devexpress

VGridControlBase.ShowFindPanel() Method

windowsforms-devexpress-dot-xtraverticalgrid-dot-vgridcontrolbase-53bd2bfc.md

latest2.2 KB
Original Source

VGridControlBase.ShowFindPanel() Method

Displays the Find Panel.

Namespace : DevExpress.XtraVerticalGrid

Assembly : DevExpress.XtraVerticalGrid.v25.2.dll

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

Declaration

csharp
public void ShowFindPanel()
vb
Public Sub ShowFindPanel

Example

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

csharp
this.Load += Form1_Load;

private void Form1_Load(object sender, EventArgs e) {
    vGridControl1.BeginInvoke(new Action(vGridControl1.ShowFindPanel));
    propertyGridControl1.BeginInvoke(new Action(propertyGridControl1.ShowFindPanel));
}
vb
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

HideFindPanel()

FindPanelVisible

Visibility

Find Panel

VGridControlBase Class

VGridControlBase Members

DevExpress.XtraVerticalGrid Namespace