C#CheckedListBox控件使用方法 listbox控件的使用

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, EventArgse)

{

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, EventArgse)

{

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

{

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++)

{
C#CheckedListBox控件使用方法 listbox控件的使用

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);

}

  

爱华网本文地址 » http://www.aihuau.com/a/25101016/291525.html

更多阅读

MFC中进度条控件的使用方法 mfc进度条控件使用

MFC中进度条控件的使用方法——简介进度条控件是程序开发中基础控件之一,常用于显示程序的进度。在进行程序安装、文件传输时经常用到。其用法也比较简单固定。今天就和大家分享一下其简单的使用方法吧。^_^MFC中进度条控件的使用方

如何使用C#TextBox控件 textboxdropdown控件

如何使用C#TextBox控件——简介在c#中TextBox控件做为最重要的控件,必须要下功夫吃透,学通。下面我给大家说说TextBox控件的三个重要属性如何使用C#TextBox控件——方法/步骤

C#DataGridView控件清空数据完美解决方法 datagridview清空列

C# DataGridView控件绑定数据后清空数据在清除DataGridview的数据时:1.DataSource为NULL(DataGridView.DataSource=null;)这样会将DataGridView的列也删掉。2.用DataGridview.Rows.Clear();提示“不能清除此列表”!!!!!以上都不是想要的结果

VB Winsock控件的使用与介绍 vb常用控件介绍

第一节:Winsock控件的介绍Winsock控件的作用简单说就是可以用于两台或多台机器间通信,这里不多说这个控件的作用了,因为在以后的介绍中我们会了解到这个控件的强大功能的,如可以用来做聊天软件等……废话不多说,来看看他有些什么重要的属

课件制作教程——PowerPoint控件的使用(一) cai课件制作教程

PowerPoint(简称PPT)是Microsoft公司开发的Office系列办公软件的重要成员,主要用于企业公司成果展示,讲演汇报等日常办公。其友好的交互界面,简单的操作方法,容易学习的特点深受各行各业的喜爱。教师在日常的教学工作中也比较喜欢用Powerp

声明:《C#CheckedListBox控件使用方法 listbox控件的使用》为网友笙清初扇离分享!如侵犯到您的合法权益请联系我们删除