我无法从中选择项目listbox
并检查项目checkedlistbox
。
如何从中选择项目listbox
然后签入checkedlistbox
?
我无法选择列表框项目并在匹配项目时检查选中列表框
当列表框中的项目时,我想要选择复选框的代码
如何使用文本框和逗号分隔签入checkedlistbox
我无法从中选择项目listbox
并检查项目checkedlistbox
。
如何从中选择项目listbox
然后签入checkedlistbox
?
我无法选择列表框项目并在匹配项目时检查选中列表框
当列表框中的项目时,我想要选择复选框的代码
如何使用文本框和逗号分隔签入checkedlistbox
如果我正确理解您的问题:
您需要的是 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);
}
}
}
}