Back to Devexpress

GridView.ShowFindPanel() Method

windowsforms-devexpress-dot-xtragrid-dot-views-dot-grid-dot-gridview-269c2406.md

latest1.9 KB
Original Source

GridView.ShowFindPanel() Method

Displays the Find Panel and invalidates all rows.

Namespace : DevExpress.XtraGrid.Views.Grid

Assembly : DevExpress.XtraGrid.v25.2.dll

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

Declaration

csharp
public override void ShowFindPanel()
vb
Public Overrides 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

InvalidateRows()

OptionsFind

GridView Class

GridView Members

DevExpress.XtraGrid.Views.Grid Namespace