如何使用列表框在选中的列表框中设置选中的项目 - C#

How to set checked item in checkedlistbox with listbox - c#

我对 listbox 中的 select 项目有疑问,并检查了 checkedlistbox 中的项目。

如何才能 select 来自 listbox 的项目然后签入 checkedlistbox

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

当列表框中的项目

我想要select检查列表框的代码

如何用文本框和分隔逗号签入选中的列表框

如果我理解你的问题:

您需要的是 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);
                    }
                }
            }


        }