PowerTools InputMan for ASP.NET 8.0J
SelectedItem プロパティ (GcComboBox)
使用例 

現在選択されている項目を取得または設定します。
構文
Public Property SelectedItem As ComboItem
public ComboItem SelectedItem {get; set;}

プロパティ値

既定値:Null
解説
SelectedItemプロパティは、リストボックス内で現在選択されている項目(ComboItemオブジェクト)を取得します。
使用例
次のサンプルコードは、選択項目が変更されたときにその内容を取得します。
Private Sub GcComboBox1_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles GcComboBox1.SelectedIndexChanged
    If GcComboBox1.SelectedItem Is Nothing Then Return
    Label1.Text = GcComboBox1.SelectedItem.Text.ToString()
End Sub
private void GcComboBox1_SelectedIndexChanged(object sender, System.EventArgs e)
{
    if (GcComboBox1.SelectedItem == null) return;
    label1.Text = GcComboBox1.SelectedItem.Text.ToString();
}
参照

GcComboBox クラス
GcComboBox メンバ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.