C# CheckedListBox控件的用法总结

 更新时间:2016年12月03日 15:12:30   作者:麦田怪人  
本篇文章主要介绍了C# CheckedListBox控件的用法总结,想要学习CheckedListBox的同学可以了解一下。

一般认为:foreach (object obj in checkedListBox1.SelectedItems)即可遍历选中的值。

其实这里遍历的只是高亮的值并不是打勾的值。遍历打勾的值要用下面的代码:

for (int i = 0; i < checkedListBox1.Items.Count; i++)
{
  if (checkedListBox1.GetItemChecked(i))
  {
    MessageBox.Show(checkedListBox1.GetItemText(checkedListBox1.Items[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 < checkedListBox1.Items.Count; j++) 
        checkedListBox1.SetItemChecked(j, true); 
}
else 
{
for (int j =0; j < checkedListBox1.Items.Count; j++) 
   checkedListBox1.SetItemChecked(j, false);
}
}

5.得到全部选中的值 ,并将选中的项的文本组合成为一个字符串。

string strCollected = string.Empty;
 for (int i = 0; i < checkedListBox1.Items.Count; i++)
 {
   if (checkedListBox1.GetItemChecked(i))
   {
     if (strCollected == string.Empty)
     {
        strCollected = checkedListBox1.GetItemText(
checkedListBox1.Items[i]);
     }
     else
     {
        strCollected = strCollected + “/“ + checkedListBox1.
GetItemText(checkedListBox1.Items[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 < checkedListBoxLayerControl.Items.Count;
          i++) 
     {   
checkedListBoxLayerControl.SetItemCheckState(i, 
    CheckState.Checked); 
} 
}
else 
{ 
   //否则变成Unchecked状态 
  for (int i = 0;
 i < checkedListBoxLayerControl.Items.Count; i++) 
{
    checkedListBoxLayerControl.SetItemCheckState(i, CheckState.Unchecked); 
}       
}
}

8. checkedListBox 单选设置(代码实现)

private void chkl_ItemAuditing_ItemCheck(object sender,  
ItemCheckEventArgs e)
{ 
   if (chkl_ItemAuditing.CheckedItems.Count > 0) 
  { 
     for (int i = 0; i < chkl_ItemAuditing.Items.Count; i++) 
     {
     if (i != e.Index) 
     { 
       this.chkl_ItemAuditing.SetItemCheckState(i, 
       System.Windows.Forms.CheckState.Unchecked); 
     } 
  } 
} 
}

9. checkedListBox1显示一个数据库中关键字对应的所有记录

for (int i = 0; i < table.Rows.Count; i++) 
{ 
  string name = table.Rows["myname"].ToString(); 
  string paw = table.Rows["mypaw"].ToString(); 
  checkedListBox1.Items.Add(name + paw); 
}
 

10. 

for(i=0;i<CheckedListBox.Items.Count;i++)  
{  
  if(CheckedListBox.GetItemText(
CheckedListBox.Items)==“你得到的值“)  
{  
   CheckedListBox.SetItemChecked(i,true);  
}  
}

 11. 清除checkedListBox1中所有的选项

for (int i = 0; i < checkedListBox1.Items.Count; i++)
{
  checkedListBox1.Items.Clear();
}

12. 

//设置索引为index的项为选中状态
for (int i = 0; i < checkedListBox1.Items.Count; i++) 
{
  checkedListBox1.SetItemChecked(i, true);
} 

 13.   

for (int i = 0; i < checkedListBox1.Items.Count; i++) 
{
     if (checkedListBox1.GetSelected(i)) 
     {
          MessageBox.Show(checkedListBox1.CheckedItems.ToString());
     }
}

14.

//选中checkedListBox1所有的选项
 
for (int i = 0; i < checkedListBox1.Items.Count; i++)     
{
     checkedListBox1.SetItemCheckState(i, CheckState.Checked);
}

15.             

for (int i = 0; i < checkedListBox1.Items.Count; i++) 
{ 
     //如果checkedListBox1的第i项被选中,
     //则显示checkedListBox1对应的值
     if (checkedListBox1.GetItemChecked(i)) 
     { 
        MessageBox.Show(checkedListBox1.Items.ToString(
)); 
     }
}

16.

//反向选择checkedListBox1的选项
for (int i = 0; i < checkedListBox1.Items.Count; i++) 
{ 
  if (checkedListBox1.GetItemChecked(i)) 
  { 
    checkedListBox1.SetItemChecked(i, false); 
  } 
  else 
  { 
    checkedListBox1.SetItemChecked(i, true); 
  } 
}

17.

//checkedListBox1中选定的项->checkedListBox2
for (int i = 0; i < checkedListBox1.CheckedItems.Count; i++) 
{ 
   checkedListBox2.Items.Add(this.checkedListBox1.CheckedItems);
 
//remove是除去一个具体的值,不是index,注意了
   this.checkedListBox1.Items.Remove(
     this.checkedListBox1.CheckedItems);

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

相关文章

  • 解析美国东部时间与北京时间相互转换的实现代码

    解析美国东部时间与北京时间相互转换的实现代码

    本篇文章是对美国东部时间与北京时间相互转换的实现代码进行了详细的分析介绍,需要的朋友参考下
    2013-05-05
  • C#中Backgroundworker与Thread的区别

    C#中Backgroundworker与Thread的区别

    本文主要介绍了C#中Backgroundworker与Thread的区别,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2022-06-06
  • WPF仿微信实现截图功能的方法详解

    WPF仿微信实现截图功能的方法详解

    这篇文章主要介绍了如何利用WPF实现截图功能(仿微信),文中的示例代码讲解详细,对我们学习或工作有一定帮助,需要的可以参考一下
    2022-07-07
  • C#中生成DLL及其事件的处理

    C#中生成DLL及其事件的处理

    在C#中,创建动态链接库是一个常见的任务,本文主要介绍了C#中生成DLL及其事件的处理,文中通过示例代码介绍的非常详细,需要的朋友们下面随着小编来一起学习学习吧
    2024-01-01
  • 解析C#设计模式之单例模式

    解析C#设计模式之单例模式

    这篇文章主要介绍了C#设计模式之单例模式的相关资料,帮助大家更好的理解和学习c# 设计模式的内容,感兴趣的朋友可以了解下
    2020-12-12
  • Directory文件类的实例讲解

    Directory文件类的实例讲解

    下面小编就为大家分享一篇Directory文件类的实例讲解,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
    2017-11-11
  • C# GroupBy的基本使用教程

    C# GroupBy的基本使用教程

    这篇文章主要给大家介绍了关于C# GroupBy的基本使用教程,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2019-02-02
  • C# 9 中新加入的关键词 init,record,with

    C# 9 中新加入的关键词 init,record,with

    这篇文章主要介绍了C# 9 中新加入的关键词 init,record,with的相关资料,帮助大家更好的理解和学习c# 9,感兴趣的朋友可以了解下
    2020-08-08
  • C#读写EXCEL单元格的问题实现

    C#读写EXCEL单元格的问题实现

    这篇文章主要介绍了C#读写EXCEL单元格的问题实现,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2019-04-04
  • 在unity脚本中控制Inspector面板的参数操作

    在unity脚本中控制Inspector面板的参数操作

    这篇文章主要介绍了在unity脚本中控制Inspector面板的参数操作,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
    2021-04-04

最新评论