'宣言 Public Overridable ReadOnly Property SelectedItem As C1ComboBoxItem
public virtual C1ComboBoxItem SelectedItem {get;}
'宣言 Public Overridable ReadOnly Property SelectedItem As C1ComboBoxItem
public virtual C1ComboBoxItem SelectedItem {get;}
C1ComboBox c = new C1ComboBox(); c.Items.Add(new C1ComboBoxItem("test1")); c.Items.Add(new C1ComboBoxItem("test2")); c.SelectedIndex = 1; // 項目は test2 を参照します。 C1ComboBoxItem item = c.SelectedItem;