0

我无法从中选择项目listbox并检查项目checkedlistbox

如何从中选择项目listbox然后签入checkedlistbox

查看我的项目

我无法选择列表框项目并在匹配项目时检查选中列表框

当列表框中的项目时,我想要选择复选框的代码

如何使用文本框和逗号分隔签入checkedlistbox

4

1 回答 1

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


        }
于 2017-02-21T13:38:30.060 回答