public void AddValue(string val, string label, CheckState check) { XDataListItem item = new XDataListItem(label, val); checkedListBox.Items.Add(item, check); }
public void AddValue(string val, string label) { XDataListItem item = new XDataListItem(label, val); comboBox.Items.Add(item); }