Occurs when the user navigates to a new table.
The following declaration shows the syntax for a method that handles the Navigate event.
[Visual Basic] Private Sub DataGridName_Navigate( _ ByVal sender As Object, _ ByVal e As NavigateEventArgs _ ) [C#] private void DataGridName_Navigate( object sender, NavigateEventArgs e ); [C++] private: void DataGridName_Navigate( Object* sender, NavigateEventArgs* e ); [JScript] private DataGridName_Navigate( sender : Object, e : NavigateEventArgs );
DataGrid Class | DataGrid MembersTopic | System.WinForms Namespace