4

我不知道如何以编程方式选择复选框列表中的项目。

这种方法无法编译,但我想向您展示我想要得到的结果。

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;
            }
        }

你如何强迫这个问题?

4

2 回答 2

7

使用CheckedListBox.SetItemCheckState

checkedListBox.SetItemCheckState(checkedListBox1.Items.Count - 1, CheckedState.Checked);

适用于已检查、未检查和不确定的情况。您还可以使用CheckedListBox.SetItemChecked

checkedListBox.SetItemChecked(checkedListBox1.Items.Count - 1, true);
于 2010-10-25T22:03:41.797 回答
3
 checkedListBox1.Items.Add(item.Key);
 checkedListBox1.SetItemChecked(checkedListBox1.Items.Count - 1, item.Value);

要不就

 checkedListBox1.Items.Add(item.Key, item.Value);
于 2010-10-25T22:01:49.107 回答