Back to Devexpress

ColumnView.ShowFindPanel() Method

windowsforms-devexpress-dot-xtragrid-dot-views-dot-base-dot-columnview-ba4a2100.md

latest1.8 KB
Original Source

ColumnView.ShowFindPanel() Method

Displays the Find Panel.

Namespace : DevExpress.XtraGrid.Views.Base

Assembly : DevExpress.XtraGrid.v25.2.dll

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

Declaration

csharp
public virtual void ShowFindPanel()
vb
Public Overridable Sub ShowFindPanel

Example

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

csharp
Load += Form1_Load;

void Form1_Load(object sender, EventArgs e) {
    gridControl1.BeginInvoke(new Action(gridView1.ShowFindPanel));
}
vb
Private Load += AddressOf Form1_Load

Private Sub Form1_Load(ByVal sender As Object, ByVal e As EventArgs)
    gridControl1.BeginInvoke(New Action(AddressOf gridView1.ShowFindPanel))
End Sub

See Also

HideFindPanel()

Find Panel

ColumnView Class

ColumnView Members

DevExpress.XtraGrid.Views.Base Namespace