一般认为:foreach (object obj in checkedListBox1.SelectedItems)即可遍历选中的值。
其实这里遍历的只是高亮的值并不是打勾的值。遍历打勾的值要用下面的代码:
for (int i = 0; i
最近用到checklistbox控件,在使用其过程中,花了较多的时间,这里我收集了其相关的代码段,希望对大家有所帮助。
1.添加项
checkedListBox1.Items.Add(“蓝色“); checkedListBox1.Items.Add(“红色“); checkedListBox1.Items.Add(“黄色“);
2. 判断第i项是否选中,选中为true,否则为false
if(checkedListBox1.GetItemChecked(i)) { return true; } else { return false; }
3. 设置第i项是否选中
checkedListBox1.SetItemChecked(i, true); //true改为false为没有选中。
4. 设置全选
添加一个名为select_all的checkbox控件,由其控制checkedListBox是全选还是全不选。
private void select_all_CheckedChanged(object sender, EventArgs e) { if(select_all.Checked) { for (int j = 0; j
5.得到全部选中的值 ,并将选中的项的文本组合成为一个字符串。
string strCollected = string.Empty; for (int i = 0; i
6. 设置CheckedListBox中第i项的Checked状态
checkedListBox1.SetItemCheckState(i, CheckState.Checked);
7.
private void checkBoxAll_CheckedChanged(object sender, EventArgs e) { if (checkBoxAll.Checked) { //被选择了则将CheckedListBox中的所有条目都变为Checked状态 for (int i = 0; i
8. checkedListBox 单选设置(代码实现)
private void chkl_ItemAuditing_ItemCheck(object sender, ItemCheckEventArgs e) { if (chkl_ItemAuditing.CheckedItems.Count > 0) { for (int i = 0; i
9. checkedListBox1显示一个数据库中关键字对应的所有记录
for (int i = 0; i
10.
for(i=0;i
11. 清除checkedListBox1中所有的选项
for (int i = 0; i
12.
//设置索引为index的项为选中状态 for (int i = 0; i
13.
for (int i = 0; i
14.
//选中checkedListBox1所有的选项 for (int i = 0; i
15.
for (int i = 0; i
16.
//反向选择checkedListBox1的选项 for (int i = 0; i
17.
//checkedListBox1中选定的项->checkedListBox2 for (int i = 0; i
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。