PowerTools PlusPak for Windows Forms 8.0J
GroupStyle 列挙体
使用例 使用例 

グループボックスの境界線の表示方法を指定します。
構文
Public Enum GroupStyle 
   Inherits System.Enum
public enum GroupStyle : System.Enum 
メンバ
メンバ解説
Noneグループボックスに境界線を表示しないことを指定します。
Standard標準のグループボックスコントロールと同様に、グループボックスの上下左右に境界線を表示することを指定します。
TopLineグループボックスに上側の境界線のみを表示することを指定します。
解説
この列挙体を使用して、GcCheckedGroupBoxおよびGcRadioGroupBoxの境界線の表示方法を指定できます。この列挙体は、GcGroupBoxControlBase.GroupStyleプロパティで使用されます。
使用例

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

// Update the items for listBox1 when item checked changed in gcCheckedGroupBox1,
private void gcCheckedGroupBox1_ItemCheckedChanged(object sender, GrapeCity.Win.Containers.CheckBoxItemEventArgs e)
{
    if (e.CheckBoxItem.Checked)
    {
        // Set special styles for checked items.
        e.CheckBoxItem.ForeColor = Color.Red;
        e.CheckBoxItem.Font = new Font(e.CheckBoxItem.Font, FontStyle.Bold);
    }
    else
    {
        // Reset these properties will cause the properties to retrieve their values from gcCheckedGroupBox1.
        e.CheckBoxItem.ForeColor = Color.Empty;
        e.CheckBoxItem.Font = null;
    }

    // Update the items displayed in listBox1.
    this.DisplayItems();
}
' Update the items for listBox1 when item checked changed in gcCheckedGroupBox1,
Private Sub gcCheckedGroupBox1_ItemCheckedChanged(ByVal sender As Object, ByVal e As CheckBoxItemEventArgs)
    If e.CheckBoxItem.Checked Then
        ' Set special styles for checked items.
        e.CheckBoxItem.ForeColor = Color.Red
        e.CheckBoxItem.Font = New Font(e.CheckBoxItem.Font, FontStyle.Bold)
    Else
        ' Reset these properties will cause the properties to retrieve their values from gcCheckedGroupBox1.
        e.CheckBoxItem.ForeColor = Color.Empty
        e.CheckBoxItem.Font = Nothing
    End If

    ' Update the items displayed in listBox1.
    Me.DisplayItems()
End Sub
継承階層

System.Object
   System.ValueType
      System.Enum
         GrapeCity.Win.Containers.GroupStyle

プラットフォーム

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

参照

GrapeCity.Win.Containers 名前空間
GroupStyle プロパティ
GroupStyle プロパティ

Send Feedback