PowerTools PlusPak for Windows Forms 8.0J
GroupStyle プロパティ
使用例 

グループボックスコントロールの境界線の表示方法を示す値を取得または設定します。
構文
Public Property GroupStyle As GroupStyle
public GroupStyle GroupStyle {get; set;}

プロパティ値

GroupStyle値の1つ。デフォルト値はGroupStyle.Standardです。
例外
例外解説
System.ComponentModel.InvalidEnumArgumentException指定された値がGroupStyle値の1つではありません。
使用例

次のサンプルコードは、GroupStyleプロパティを設定して、いくつかの項目を含むTopLineスタイルのGcRadioGroupBoxコントロールを作成する方法を示します。このサンプルコードを実行するには、以下のコードをSystem.Windows.Forms.Formプロジェクトに追加し、ここで作成したメソッドをコンストラクターまたはフォーム上の別のメソッドから呼び出します。

private void CreateTopLineGcRadioGroupBox()
{
    GcRadioGroupBox gcRadioGroupBox1 = new GcRadioGroupBox();

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

    // Set gcRadioGroupBox1 to TopLine group style.
    gcRadioGroupBox1.GroupStyle = GroupStyle.TopLine;

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

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

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

    // Add gcRadioGroupBox1 to the form.
    this.Controls.Add(gcRadioGroupBox1);
}
Private Sub CreateTopLineGcRadioGroupBox()
    Dim gcRadioGroupBox1 As New GcRadioGroupBox()

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

    ' Set gcRadioGroupBox1 to TopLine group style.
    gcRadioGroupBox1.GroupStyle = GroupStyle.TopLine

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

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

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

    ' Add gcRadioGroupBox1 to the form.
    Me.Controls.Add(gcRadioGroupBox1)
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 メンバ

Send Feedback