PowerTools CalendarGrid for Windows Forms 1.0J
FlatStyle プロパティ (GcCalendarGrid)
使用例 

GcCalendarGrid コントロールのフラットスタイルの外観を取得または設定します。
構文
Public Property FlatStyle As FlatStyle
public FlatStyle FlatStyle {get; set;}

プロパティ値

System.Windows.Forms.FlatStyle 値の 1 つ。既定値は System.Windows.Forms.FlatStyle.System です。
解説
CalendarTitleButtonCalendarNavigationButtonCalendarCellTypeFlatStyle を継承します。CalendarTitleButtonCalendarNavigationButtonCalendarCellType の FlatStyle を設定すると、その要素は設定された独自のフラットスタイルを使用します。
使用例
次のサンプルコードは、GcCalendarGrid のフラットスタイルを変更する方法を示します。
private void SetFlatAppearance(object sender, EventArgs e)
{
    this.gcCalenderGrid.Template.ColumnCount = 2;
    CalendarButtonCellType buttonCellType = new CalendarButtonCellType();
    buttonCellType.FlatAppearance.BorderColor = Color.SkyBlue;
    buttonCellType.FlatAppearance.BorderSize = 2;
    buttonCellType.FlatAppearance.MouseOverBackColor = Color.DeepSkyBlue;
    this.gcCalenderGrid.Template.Content.GetCell(1, 1).CellType = buttonCellType;
    this.gcCalenderGrid.FlatStyle = FlatStyle.Flat;            
}
Private Sub SetFlatAppearance(sender As Object, e As EventArgs)
    Me.gcCalenderGrid.Template.ColumnCount = 2
    Dim buttonCellType As New CalendarButtonCellType()
    buttonCellType.FlatAppearance.BorderColor = Color.SkyBlue
    buttonCellType.FlatAppearance.BorderSize = 2
    buttonCellType.FlatAppearance.MouseOverBackColor = Color.DeepSkyBlue
    Me.gcCalenderGrid.Template.Content.GetCell(1, 1).CellType = buttonCellType
    Me.gcCalenderGrid.FlatStyle = FlatStyle.Flat
End Sub
参照

GcCalendarGrid クラス
GcCalendarGrid メンバ

 

 


© 2014 GrapeCity inc. All rights reserved.