bool checkValue = this.checkedListBox1.GetItemChecked(0); MessageBox.Show(string.Format("第一项的选中状态:{0}", checkValue));
你好!
判断某项是否选中:使用 CheckedListBox 的 GetItemChecked 方法
点选事件:ItemCheck
..能不能给点示例。
要判断是否选中。
那是不是得用for循环来判断啊。