'Declaration Public Overridable Property SelectedValue As System.String
public virtual System.string SelectedValue {get; set;}
'Declaration Public Overridable Property SelectedValue As System.String
public virtual System.string SelectedValue {get; set;}
C1ComboBox c = new C1ComboBox(); c.Items.Add(new C1ComboBoxItem("test1")); c.Items.Add(new C1ComboBoxItem("test2")); // select the test2 item. c.SelectedValue = "test2";