DataGrid.Navigate Event
.NET Framework 4.5
Occurs when the user navigates to a new table.
Namespace: System.Windows.Forms
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.
For more information about handling events, see Consuming Events.
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
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.