DataGrid.ResetHeaderForeColor Yöntem

Tanım

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

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

Örnekler

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

private:
   void button3_Click( Object^ /*sender*/, EventArgs^ /*e*/ )
   {
      ColorDialog^ myColorDialog = gcnew ColorDialog;

      // Disable selecting a custom color.
      myColorDialog->AllowFullOpen = false;

      // Enable the help button.
      myColorDialog->ShowHelp = true;

      // Set the initial color to the current color.
      myColorDialog->Color = myDataGrid->HeaderForeColor;

      // Show color dialog box.
      myColorDialog->ShowDialog();

      // Set the header foreground color.
      myDataGrid->HeaderForeColor = myColorDialog->Color;
   }

   // Reset the header foregroundcolor.
   void button4_Click( Object^ /*sender*/, EventArgs^ /*e*/ )
   {
      myDataGrid->ResetHeaderForeColor();
   }
private void button3_Click(object sender, EventArgs e)
{
   ColorDialog myColorDialog = new ColorDialog();
   // Disable selecting a custom color.
   myColorDialog.AllowFullOpen = false ;
   // Enable the help button.
   myColorDialog.ShowHelp = true ;
   // Set the initial color to the current color.
   myColorDialog.Color = myDataGrid.HeaderForeColor;
   // Show color dialog box.
   myColorDialog.ShowDialog();
   // Set the header foreground color.
   myDataGrid.HeaderForeColor = myColorDialog.Color;
}
// Reset the header foregroundcolor.
private void button4_Click(object sender, EventArgs e)
{
   myDataGrid.ResetHeaderForeColor();
}
Private Sub button3_Click(ByVal sender As Object, ByVal e As EventArgs) Handles button3.Click
    Dim myColorDialog As New ColorDialog()
    ' Disable selecting a custom color.
    myColorDialog.AllowFullOpen = False
    ' Enable the help button.
    myColorDialog.ShowHelp = True
    ' Set the initial color to the current color.
    myColorDialog.Color = myDataGrid.HeaderForeColor
    ' Show color dialog box.
    myColorDialog.ShowDialog()
    ' Set the header foreground color.
    myDataGrid.HeaderForeColor = myColorDialog.Color
End Sub

' Reset the header foregroundcolor.
Private Sub button4_Click(ByVal sender As Object, ByVal e As EventArgs) Handles button4.Click
    myDataGrid.ResetHeaderForeColor()
End Sub

Açıklamalar

Genellikle System.Windows.Forms.DataGrid için bir tasarımcı oluşturuyorsanız veya öğesini içeren System.Windows.Forms.DataGridkendi denetiminizi oluşturuyorsanız bu yöntemi kullanırsınız. özellik değerinin ShouldSerializeHeaderForeColor varsayılan değerden değişip değişmediğini belirlemek için yöntemini kullanabilirsiniz.

Şunlara uygulanır