我无法从listbox
中选择项目并检查checkedlistbox
中的项目。
如何从listbox
中选择项目,然后签入checkedlistbox
?
我无法选择列表框项目并在匹配项目时检查checkedlistbox
我希望在列表框中的项目
时选择checklistbox的代码如何使用文本框和分隔的逗号检查checkedlistbox
答案 0 :(得分:0)
如果我理解你的问题:
您需要的是方法GetItemCheckState。
用法如下:
试试这个:
foreach (var item in listBox1.Items)
{
for (int i = 0; i < checkedListBox1.Items.Count; i++)
{
checkedListBox1.SetItemChecked(i, false);//First uncheck the old value!
//
for (int x = 0; x < listBox1.Items.Count; x++)
{
if (checkedListBox1.Items[i].ToString() == listBox1.Items[x].ToString())
{
//Check only if they match!
checkedListBox1.SetItemChecked(i, true);
}
}
}
}