次の方法で共有


DataGrid.ResetHeaderBackColor メソッド

HeaderBackColor プロパティを既定値にリセットします。

Public Sub ResetHeaderBackColor()
[C#]
public void ResetHeaderBackColor();
[C++]
public: void ResetHeaderBackColor();
[JScript]
public function ResetHeaderBackColor();

解説

通常、 System.Windows.Forms.DataGrid のデザイナまたは System.Windows.Forms.DataGrid が組み込まれている独自のコントロールを作成する場合に、このメソッドを使用します。 ShouldSerializeHeaderBackColor メソッドを使用して、プロパティの値が既定値から変更されたかどうかを判断します。

使用例

 
Private Sub button1_Click(ByVal sender As Object, ByVal e As EventArgs) Handles button1.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.HeaderBackColor
    ' Show color dialog box.
    myColorDialog.ShowDialog()
    ' Set the header background color.   
    myDataGrid.HeaderBackColor = myColorDialog.Color
End Sub 'button1_Click

' Reset the header background color.
Private Sub button2_Click(ByVal sender As Object, ByVal e As EventArgs) Handles button2.Click
    myDataGrid.ResetHeaderBackColor()
End Sub 'button2_Click


[C#] 
private void button1_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.HeaderBackColor;
   // Show color dialog box.
   myColorDialog.ShowDialog();
   // Set the header background color.   
   myDataGrid.HeaderBackColor  = myColorDialog.Color;
   
}
// Reset the header background color.
private void button2_Click(object sender, EventArgs e)
{           
   myDataGrid.ResetHeaderBackColor();
}

[C++] 
private:
    void button1_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->HeaderBackColor;
        // Show color dialog box.
        myColorDialog->ShowDialog();
        // Set the header background color.
        myDataGrid->HeaderBackColor  = myColorDialog->Color;

    }
    // Reset the header background color.
    void button2_Click(Object* /*sender*/, EventArgs* /*e*/) {
        myDataGrid->ResetHeaderBackColor();
    }

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ

参照

DataGrid クラス | DataGrid メンバ | System.Windows.Forms 名前空間