PowerTools PlusPak for Windows Forms 8.0J
FlatStyle プロパティ (GcGroupBoxControlBase)
使用例 

グループボックスコントロールのフラットスタイルの外観を取得または設定します。
構文
Public Overrides Property FlatStyle As FlatStyleEx
public override FlatStyleEx FlatStyle {get; set;}
例外
例外解説
System.ComponentModel.InvalidEnumArgumentException指定された値がGrapeCity.Win.Common.FlatStyleEx値の1つではありません。
解説
FlatStyleプロパティがGrapeCity.Win.Common.FlatStyleEx.Systemに設定されている場合、GcCheckedGroupBoxまたはGcRadioGroupBoxの境界線と項目はユーザーのオペレーティングシステムによって描画されます。
使用例

次のサンプルコードは、いくつかの項目を含むGcCheckedGroupBoxコントロールを作成する方法を示します。この例では、FlatStyleGrapeCity.Win.Common.FlatStyleEx.Flatに設定して、グループボックスコントロールとその項目をフラットな外観にしています。このサンプルコードを実行するには、以下のコードをSystem.Windows.Forms.Formプロジェクトに追加し、ここで作成したメソッドをコンストラクターまたはフォーム上の別のメソッドから呼び出します。

private void CreateGcCheckedGroupBoxWidthFlatAppearance()
{
    GcCheckedGroupBox gcCheckedGroupBox = new GcCheckedGroupBox();

    // Set gcRadioGroupBox1's location and Size.
    gcCheckedGroupBox.Location = new Point(10, 20);

    // Set Text of gcRadioGroupBox1.
    gcCheckedGroupBox.Text = "All Items";

    // Create some radio button items.
    CheckBoxItem[] items = new CheckBoxItem[] 
    {
        new CheckBoxItem("item1"),
        new CheckBoxItem("item2"),
        new CheckBoxItem("item3")
    };

    // Add the items to gcRadioGroupBox1.
    gcCheckedGroupBox.Items.AddRange(items);

    // Draw gcCheckedGroupBox with Flat appearance.
    gcCheckedGroupBox.FlatStyle = GrapeCity.Win.Common.FlatStyleEx.Flat;

    // Add gcCheckedGroupBox to the form.
    this.Controls.Add(gcCheckedGroupBox);
}
Private Sub CreateGcCheckedGroupBoxWidthFlatAppearance()
    Dim gcCheckedGroupBox As New GcCheckedGroupBox()

    ' Set gcRadioGroupBox1's location and Size.
    gcCheckedGroupBox.Location = New Point(10, 20)

    ' Set Text of gcRadioGroupBox1.
    gcCheckedGroupBox.Text = "All Items"

    ' Create some radio button items.
    Dim items As CheckBoxItem() = New CheckBoxItem() {New CheckBoxItem("item1"), New CheckBoxItem("item2"), New CheckBoxItem("item3")}

    ' Add the items to gcRadioGroupBox1.
    gcCheckedGroupBox.Items.AddRange(items)

    ' Draw gcCheckedGroupBox with Flat appearance.
    gcCheckedGroupBox.FlatStyle = FlatStyleEx.Flat

    ' Add gcCheckedGroupBox to the form.
    Me.Controls.Add(gcCheckedGroupBox)
End Sub
プラットフォーム

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

参照

GcGroupBoxControlBase クラス
GcGroupBoxControlBase メンバ
FlatStyleEx 列挙体
FlatStyleEx 列挙体

Send Feedback