我正在尝试检查已选中列表框中的每个项目,并根据是否选中该项目来处理该项目。我已经能够使用 indexCollection 获取已检查的项目,但我无法获取所有项目,我收到此错误“无法将类型为“System.String”的对象转换为类型“System.String”。 Windows.Forms.ListViewItem'
foreach (ListViewItem item in checkedListBox2.Items)
{
if (item.Checked == true)
//do something with item.name
else
//do something else with item.name
}
我不确定为什么它在 foreach 行中给我字符串转换错误。我怎样才能做到这一点?谢谢。