在C#中,我试图检查CheckBoxList中的项目,其中文本等于我所需要的。
我将修改代码以检查数据库中存在的项目。
如果您想举一个例子,我需要选择等于abc 的 list 框项目。

最佳答案

假设CheckedListBox中的项目为字符串:

  for (int i = 0; i < checkedListBox1.Items.Count; i++)
  {
    if ((string)checkedListBox1.Items[i] == value)
    {
      checkedListBox1.SetItemChecked(i, true);
    }
  }

或者
  int index = checkedListBox1.Items.IndexOf(value);

  if (index >= 0)
  {
    checkedListBox1.SetItemChecked(index, true);
  }

10-04 12:03