本文介绍了在CheckedListBox控件中需要帮助的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 大家好 请告诉我如何在按钮上取消选中CheckedListBox的选中值 谢谢Hi allPlease tell me how to uncheck the checked value of a CheckedListBox on a button clickthank you推荐答案 chkitem.ClearSelected(); 取消选中CheckedListBox的选中值: Uncheck the checked value of a CheckedListBox:chkitem.SetItemChecked(index, false); 您的代码: And your code:foreach (int index in chkitem.CheckedIndices){ chkitem.SetItemChecked(index, false);} checkedListBox1.Items.Add("value1", CheckState.Unchecked); 为了更好地理解,请点击此链接。 CheckBoxList 解决方案-2 : 也可以这样试试。 For better understanding follow this link. CheckBoxListSolution-2:Try like this too.foreach(int i in checkedListBox1.CheckedIndices){ checkedListBox1.SetItemCheckState(i, CheckState.Unchecked);} 谢谢Thanks 这篇关于在CheckedListBox控件中需要帮助的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
10-21 23:48