DataGrid.Navigate Event
.NET Framework (current version)
Occurs when the user navigates to a new table.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Use the Navigate event to reset individual column properties, such as width, as appropriate to the table.
The following code example demonstrates the use of this member.
' Create an instance of the 'Navigate' NavigateEventHandler. Private Sub CallNavigate() AddHandler myDataGrid.Navigate, AddressOf Grid_Navigate End Sub 'CallNavigate ' Raise the event when navigating to another table. Private Sub Grid_Navigate(ByVal sender As Object, ByVal e As NavigateEventArgs) ' String variable used to show message. Dim myString As String = "Navigate event raised, moved to another table" ' Show the message when navigating to another table. MessageBox.Show(myString, "Table navigation information") End Sub 'Grid_Navigate
.NET Framework
Available since 1.1
Available since 1.1
Show: