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.
// Instantiate the 'Navigate' NavigateEventHandler. private: void CallNavigate() { myDataGrid->Navigate += gcnew NavigateEventHandler( this, &MyDataGrid::Grid_Navigate ); } // Raise the event when navigating to another table. private: void Grid_Navigate( Object^ /*sender*/, NavigateEventArgs^ /*e*/ ) { // String variable used to show message. String^ myString = "Navigate event raised, moved to another table"; // Show the message when navigating to another table. MessageBox::Show( myString, "Table navigation information" ); }
.NET Framework
Available since 1.1
Available since 1.1
Show: