本文介绍了必须禁用复选框列表中的所有项目,但我们使用itemcheck事件单击的项目除外的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
大家好,
我有一个清单框,里面有一些项目(复选框),名称为1)tamper
2)instantdata
3)全部
这三个是checkedlistbox中的复选框
我的任务是当我单击全部"复选框,其余两个复选框必须被禁用.
为此,我必须使用itemcheck事件.
我正在尝试,但是我没有得到确切的任务,请帮助我.
hi all,
i am having one checkedlistbox with some items(checkboxes) in it named 1)tamper
2)instantdata
3)All
here these 3 are checkboxes in checkedlistbox
my task is when i click "All" checkbox the remainning two checkboxes have to be disabled.
for that i have to use itemcheck event.
i am trying but i am not getting the exact task please help me .
推荐答案
protected void CheckBox1_CheckedChanged(object sender, EventArgs e)
{
foreach (ListItem listitem in CheckBoxList1.Items)
{
listitem.Selected = CheckBox1.Checked;
listitem.Enabled = false;
}
}
这篇关于必须禁用复选框列表中的所有项目,但我们使用itemcheck事件单击的项目除外的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!