我无法弄清楚如何以编程方式选择复选框列表中的项目。
这种cource方法无法编译,但我想告诉你我想得到什么结果。
public ColumnsSelector(Dictionary<string, bool> dataPropertyNames)
: this()
{
foreach (var item in dataPropertyNames)
{
checkedListBox1.Items.Add(item.Key);
checkedListBox1.Items[checkedListBox1.Items.IndexOf(item.Key)].Checked = item.Value;
}
}
你如何解决这个问题?
答案 0 :(得分:6)
使用CheckedListBox.SetItemCheckState:
checkedListBox.SetItemCheckState(checkedListBox1.Items.Count - 1, CheckedState.Checked);
适用于已选中,未选中和不确定。您也可以使用CheckedListBox.SetItemChecked:
checkedListBox.SetItemChecked(checkedListBox1.Items.Count - 1, true);
答案 1 :(得分:3)
checkedListBox1.Items.Add(item.Key);
checkedListBox1.SetItemChecked(checkedListBox1.Items.Count - 1, item.Value);
或只是
checkedListBox1.Items.Add(item.Key, item.Value);