DataGridTableStyle.ResetBackColor Méthode

Définition

Rétablit la valeur par défaut de la propriété BackColor.

public:
 void ResetBackColor();
public void ResetBackColor ();
member this.ResetBackColor : unit -> unit
Public Sub ResetBackColor ()

Exemples

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

private:
   void AddCustomColumnStyle()
   {
      // Set the TableStyle Mapping name.
      myTableStyle->MappingName = "customerTable";
      myTableStyle->BackColor = Color::Pink;
      
      // Set the ColumnStyle properties and add to TableStyle.
      myColumnStyle->MappingName = "Customers";
      myColumnStyle->HeaderText = "Customer Name";
      myColumnStyle->Width = 250;
      myTableStyle->GridColumnStyles->Add( myColumnStyle );
      myDataGrid->TableStyles->Add( myTableStyle );
   }

   void myButton1_Click( Object^ /*sender*/, EventArgs^ /*e*/ )
   {
      // Reset the background color.
      myTableStyle->ResetBackColor();
   }
private void AddCustomColumnStyle()
{
   // Set the TableStyle Mapping name.
   myTableStyle.MappingName = "customerTable";
   myTableStyle.BackColor = Color.Pink;

   // Set the ColumnStyle properties and add to TableStyle.
   myColumnStyle.MappingName = "Customers";
   myColumnStyle.HeaderText = "Customer Name";
   myColumnStyle.Width = 250;
   myTableStyle.GridColumnStyles.Add(myColumnStyle);
   myDataGrid.TableStyles.Add(myTableStyle);
}

private void myButton1_Click(object sender, EventArgs e)
{
   // Reset the background color.
   myTableStyle.ResetBackColor();
}
Private Sub AddCustomColumnStyle()
   ' Set the TableStyle Mapping name.
   myTableStyle.MappingName = "customerTable"
   myTableStyle.BackColor = Color.Pink
   
   ' Set the ColumnStyle properties and add to TableStyle.
   myColumnStyle.MappingName = "Customers"
   myColumnStyle.HeaderText = "Customer Name"
   myColumnStyle.Width = 250
   myTableStyle.GridColumnStyles.Add(myColumnStyle)
   myDataGrid.TableStyles.Add(myTableStyle)
End Sub


Private Sub myButton1_Click(sender As Object, e As EventArgs)
   ' Reset the background color.
   myTableStyle.ResetBackColor()
End Sub

Remarques

Vous utilisez généralement cette méthode si vous créez un concepteur pour le DataGridTableStyle ou si vous créez votre propre contrôle incorporant le DataGridTableStyle.

S’applique à