Share via


DataGridTableStyle.ResetHeaderBackColor Yöntem

Tanım

Özelliği varsayılan değerine sıfırlar HeaderBackColor .

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

Örnekler

Aşağıdaki kod örneğinde bu üyenin kullanımı gösterilmektedir.

private:
   void Button_Click( Object^ /*sender*/, EventArgs^ /*e*/ )
   {
      // Change the color of 'HeaderBack'.
      myDataTableStyle->HeaderBackColor = Color::LightPink;
   }

   void Button1_Click( Object^ /*sender*/, EventArgs^ /*e*/ )
   {
      // Reset the 'HeaderBack' to its origanal color.
      myDataTableStyle->ResetHeaderBackColor();
   }

private void Button_Click(object sender, EventArgs e)
{
   // Change the color of 'HeaderBack'.
   myDataTableStyle.HeaderBackColor = Color.LightPink;
}

private void Button1_Click(object sender, EventArgs e)
{
    // Reset the 'HeaderBack' to its origanal color.
    myDataTableStyle.ResetHeaderBackColor();
}
 Private Sub Button_Click(ByVal sender As Object, ByVal e As EventArgs)
     ' Change the color of 'HeaderBack'.
     myDataTableStyle.HeaderBackColor = Color.LightPink
 End Sub

 Private Sub Button1_Click(ByVal sender As Object, ByVal e As EventArgs)
     ' Reset the 'HeaderBack' to its origanal color.
     myDataTableStyle.ResetHeaderBackColor()
 End Sub

Açıklamalar

için DataGridTableStyle bir tasarımcı oluşturuyorsanız veya öğesini birleştiren DataGridTableStylekendi denetiminizi oluşturuyorsanız genellikle bu yöntemi kullanırsınız. Özellik değerinin ShouldSerializeHeaderBackColor varsayılan değerden değişip değişmediğini belirlemek için yöntemini kullanabilirsiniz.

Şunlara uygulanır

Ayrıca bkz.