/// <summary>
///
/// </summary>
public class ListItems : List<ListItem> {
public void Bind(ComboBox control) {
control.DisplayMember = "Text";
control.ValueMember = "Value";
control.DataSource = this;
}
public void Bind(ListBox control) {
control.DisplayMember = "Text";
control.ValueMember = "Value";
control.DataSource = this;
}
public void Bind(DataGridViewComboBoxCell control) {
control.DisplayMember = "Text";
control.ValueMember = "Value";
control.DataSource = this;
}
}
ListItems items = new ListItems();
items.Add(new ListItem(1, "深圳"));
items.Add(new ListItem(2, "北京"));
items.Add(new ListItem(3, "上海"));
ComboBox comboBox = new ComboBox();
items.Bind(comboBox);
this.Controls.Add(comboBox);