PowerTools MultiRow for Windows Forms 8.0J
BackColor プロパティ (Section)
使用例 

Sectionの背景色を取得または設定します。
構文
Public Property BackColor As Color
public Color BackColor {get; set;}

プロパティ値

背景色を表すSystem.Drawing.Color
使用例
次のサンプルコードは、セクションの背景色効果を変更する方法を示します。このサンプルコードは、Sectionクラスに示されている詳細なコード例の一部を抜粋したものです。
void setBackColorButton_Click(object sender, EventArgs e)
{
    Template template = Template.Default;

    Section section = template.Row;

    section.BackColor = Color.Yellow;

    // Reload template.
    this.gcMultiRow1.Template = template;
}
Private Sub setBackColorButton_Click(ByVal sender As Object, ByVal e As EventArgs) Handles setBackColorButton.Click
    Dim template1 As Template = Template.Default

    Dim section As Section = template1.Row

    section.BackColor = Color.Yellow

    ' Reload template.
    Me.gcMultiRow1.Template = template1
End Sub
参照

Section クラス
Section メンバ

 

 


© 2008-2015 GrapeCity inc. All rights reserved.