This documentation is archived and is not being maintained.
DataGrid.Navigate Event
Visual Studio 2008
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.
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 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: