DataGridTableStyle.SelectionBackColorChanged Event

Definition

Occurs when the SelectionBackColor value changes.

public:
 event EventHandler ^ SelectionBackColorChanged;
public event EventHandler SelectionBackColorChanged;
member this.SelectionBackColorChanged : EventHandler 
Public Custom Event SelectionBackColorChanged As EventHandler 

Event Type

Examples

The following code example demonstrates the use of this member.

public:
   void AttachSelectionBackColorChanged()
   {
      // Handle the 'SelectionBackColorChanged' event.
      myGridTableStyle->SelectionBackColorChanged += gcnew EventHandler( this, &MyForm::MyDataGrid_SelectedBackColorChanged );
   }

private:
   void MyDataGrid_SelectedBackColorChanged( Object^ /*sender*/, System::EventArgs^ /*e*/ )
   {
      MessageBox::Show( "SelectionBackColorChanged event was raised, Color changed to " + myGridTableStyle->SelectionBackColor );
   }
public void AttachSelectionBackColorChanged()
{
   // Handle the 'SelectionBackColorChanged' event.
   myGridTableStyle.SelectionBackColorChanged  += new EventHandler(this.MyDataGrid_SelectedBackColorChanged);      
}

private void MyDataGrid_SelectedBackColorChanged(object sender, System.EventArgs e)  
{
   MessageBox.Show("SelectionBackColorChanged event was raised, Color changed to "+ myGridTableStyle.SelectionBackColor);
}
Public Sub AttachSelectionBackColorChanged()
   ' Handle the 'SelectionBackColorChanged' event.
   AddHandler myGridTableStyle.SelectionBackColorChanged, AddressOf MyDataGrid_SelectedBackColorChanged
End Sub


 Private Sub MyDataGrid_SelectedBackColorChanged(ByVal sender As Object, ByVal e As EventArgs)
     MessageBox.Show("SelectionBackColorChanged event was raised, Color changed to " & myGridTableStyle.SelectionBackColor.ToString())
 End Sub

Remarks

For more information about handling events, see Handling and Raising Events.

Applies to

See also