我在Checkedlistbox中检查下面的其他Checbox时

我在Checkedlistbox中检查下面的其他Checbox时

本文介绍了当我在Checkedlistbox中检查下面的其他Checbox时,如何检查Checkedlistbox中的所有项目?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 当我检查CheckedListBox中的其他checbox时,如何检查CheckedListBox中的所有项目?how to checked all items in CheckedListBox when i check other checbox take below in the CheckedListBox?推荐答案private void checkBox1_CheckedChanged(object sender, EventArgs e){ for (int i = 0; i < checkedListBox1.Items.Count; i++) { checkedListBox1.SetItemChecked(i, checkBox1.Checked); }}protected void cbExtList_OnSelectedIndexChanged(object sender, EventArgs e){ try { if (Convert.ToInt32(this.cbExtList.SelectedItem.Value) == 0) { foreach (ListItem li in cbExtList.Items) { li.Selected = true; } } else { foreach (ListItem li in cbExtList.Items) { li.Selected = false; } } } catch (Exception ex) { Monitoring.WriteException(ex); }} 这篇关于当我在Checkedlistbox中检查下面的其他Checbox时,如何检查Checkedlistbox中的所有项目?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
09-05 23:23