PowerTools PlusPak for Windows Forms 8.0J
CheckBoxItemEventArgs クラス
メンバ  使用例 

GcCheckedGroupBox.ItemCheckedChangedイベントとGcCheckedGroupBox.ItemClickイベントのデータを提供します。
構文
Public Class CheckBoxItemEventArgs 
   Inherits System.EventArgs
public class CheckBoxItemEventArgs : System.EventArgs 
解説
このクラスは、GcCheckedGroupBox.ItemCheckedChangedイベントおよびGcCheckedGroupBox.ItemClickイベントが発生したときに使用されます。CheckBoxItemプロパティを使用して、イベントが発生したCheckBoxItemを確認できます。
使用例
次のサンプルコードは、このメンバの使用方法を示します。この例では、GcCheckedGroupBox.ItemCheckedChangedイベントが発生するとイベントハンドラによってそれが報告されます。イベントハンドラでは、項目をSystem.Windows.Forms.ListBoxコントロールに表示し、チェックマークが付いている項目を赤の前景色と太字のフォントスタイルを使用して表示しています。このサンプルコードは、GcCheckedGroupBoxクラスの概要に示されている詳細なコード例の一部を抜粋したものです。
// 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.EventArgs
      GrapeCity.Win.Containers.CheckBoxItemEventArgs

プラットフォーム

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

参照

CheckBoxItemEventArgs メンバ
GrapeCity.Win.Containers 名前空間
ItemCheckedChanged イベント
ItemClick イベント
ItemCheckedChanged イベント
ItemClick イベント

Send Feedback