每日小编都会为大家带来一些知识类的文章,那么今天小编为大家带来的是checkedlistbox用法方面的消息知识,那么如果各位小伙伴感兴趣的话可以,认真的查阅一下下面的内容哦。
假设你的listbox为listbox1,
1.首先在listbox1的items中添加"选中项","未选中项","所有项"
2在你的listbox selectindexchanged事件中添加如下代码:
芝常士回答,版权必究,点未经格许可,单不得转石载
private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
{
if (listBox3.SelectedIndex == 0)
{
checkedListBox1.Items.Clear();
对着数你光争再确连史铁。
checkedListBox1.Items.Add(listBox3.SelectedItem.ToString());
以于多民从表与很题路任证土,步约派调县照价。
}
if (listBox3.SelectedIndex == 1)
{
checkedListBox1.Items.Clear();
checkedListBox1.Items.Add(listBox3.SelectedItem.ToString());
}
if (listBox3.SelectedIndex == 2)
{
checkedListBox1.Items.Clear();
checkedListBox1.Items.Add(listBox3.Items[0].ToString());
checkedListBox1.Items.Add(listBox3.Items[1].ToString());
}
}
本文到此结束,希望对大家有所帮助。