DataGridTableStyle.SelectionBackColorChanged Événement

Définition

Se produit quand la valeur SelectionBackColor est modifiée.

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

Type d'événement

EventHandler

Exemples

L’exemple de code suivant illustre l’utilisation de ce membre.

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

Remarques

Pour plus d'informations sur la gestion des événements, voir gestion et déclenchement d’événements.

S’applique à

Voir aussi