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

GcRadioGroupBoxコントロールに含まれるすべての項目のコレクションを取得します。
構文
Public ReadOnly Property Items As RadioButtonItemCollection
public RadioButtonItemCollection Items {get;}

プロパティ値

GcRadioGroupBoxコントロールに含まれる項目を表すRadioButtonItemCollection
解説
Itemsプロパティを使用すると、現在GcRadioGroupBoxコントロールに格納されている項目のリストへの参照を取得できます。この参照を使用して、コレクション内の項目を追加または削除したり、項目数を確認したりできます。項目コレクションに対して実行できるタスクの詳細については、RadioButtonItemCollectionクラスのリファレンストピックを参照してください。
使用例
次のサンプルコードは、RadioButtonItemCollection内のすべての項目を列挙し、項目のテキスト、インデックス、およびチェック状態をSystem.Windows.Forms.ListBoxコントロールに表示します。この例は、Itemsプロパティを使用してRadioButtonItemCollectionを取得する方法と、IndexOfメソッドを使用して項目のインデックスを取得する方法を示します。このサンプルコードは、GcRadioGroupBoxクラスの概要に示されている詳細なコード例の一部を抜粋したものです。
// Fill listBox1 with all the items in gcRadioGroupBox1.
private void DisplayAllItems()
{
    // Display all the items of gcRadioGroupBox1 in list box.
    this.listBox1.Items.Clear();
    RadioButtonItemCollection items = this.gcRadioGroupBox1.Items;
    foreach (RadioButtonItem item in items)
    {
        int index = this.listBox1.Items.Add(
             item.Text +
            " index: " + items.IndexOf(item).ToString() +
            " checked state: " + item.Checked);
    }

    // Select the corresponding item in listBox1.
    this.listBox1.SelectedIndex = this.gcRadioGroupBox1.CheckedIndex;
}
' Fill listBox1 with all the items in gcRadioGroupBox1.
Private Sub DisplayAllItems()
    ' Display all the items of gcRadioGroupBox1 in list box.
    Me.listBox1.Items.Clear()
    Dim items As RadioButtonItemCollection = Me.gcRadioGroupBox1.Items
    For Each item As RadioButtonItem In items
        Dim index As Integer = Me.listBox1.Items.Add(item.Text + " index: " + items.IndexOf(item).ToString() + " checked state: " + item.Checked.ToString())
    Next

    ' Select the corresponding item in listBox1.
    Me.listBox1.SelectedIndex = Me.gcRadioGroupBox1.CheckedIndex
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

参照

GcRadioGroupBox クラス
GcRadioGroupBox メンバ

Send Feedback