DataGrid::ShowParentDetailsButtonClick Event

 

Occurs when the ShowParentDetails button is clicked.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
event EventHandler^ ShowParentDetailsButtonClick {
	void add(EventHandler^ value);
	void remove(EventHandler^ value);
}

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
Return to top
Show: