DataGrid::BackButtonClick Event
.NET Framework (current version)
Occurs when the Back button on a child table is clicked.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
The Back button becomes visible when a child table is displayed. Clicking the button will cause the grid to display the parent table.
The following code example adds an event handler for the BackButtonClick event.
// Create an instance of the 'BackButtonClick' EventHandler. private: void CallBackButtonClick() { myDataGrid->BackButtonClick += gcnew EventHandler( this, &MyDataGrid::Grid_BackClick ); } // Raise the event when 'BackButton' on child table is clicked. void Grid_BackClick( Object^ /*sender*/, EventArgs^ /*e*/ ) { // String variable used to show message. String^ myString = "BackButtonClick event raised, showing parent table"; // Show information about Back button. MessageBox::Show( myString, "Back button information" ); }
.NET Framework
Available since 1.1
Available since 1.1
Show: