DataGrid::ShowParentDetailsButtonClick Event
.NET Framework (current version)
Occurs when the ShowParentDetails button is clicked.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
The following code example demonstrates the use of this member.
private: void CallShowParentDetailsButtonClick() { myDataGrid->ShowParentDetailsButtonClick += gcnew EventHandler( this, &MyForm::DataGridShowParentDetailsButtonClick_Clicked ); } // raise the event when ParentDetailsButton is clicked. void DataGridShowParentDetailsButtonClick_Clicked( Object^ /*sender*/, EventArgs^ /*e*/ ) { String^ myMessage = "ShowParentDetailsButtonClick event raised"; // Show the message when event is raised. MessageBox::Show( myMessage, "ShowParentDetailsButtonClick information" ); }
.NET Framework
Available since 1.1
Available since 1.1
Show: