我不知道如何以编程方式选择复选框列表中的项目。
这种方法无法编译,但我想向您展示我想要得到的结果。
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;
}
}
你如何强迫这个问题?