gpt4 book ai didi

c# - 单击单个复选框时尝试选择选中列表框中的所有项目

转载 作者:太空宇宙 更新时间:2023-11-03 16:25:39 26 4
gpt4 key购买 nike

当复选框全部被选中时,我正在尝试选择选中列表框中的所有项目"如何获取,这是我的代码

private void checkBox1_CheckedChanged(object sender, EventArgs e)
{
if (cbAll.Checked)
{
if(clbViruslist.Items.Count > 0)
{
// here clbViruslist is the checked list o
// for(int i=0;i<clbViruslist.Items.Count;i++)
// clbViruslist.SetSelected(i,true);
// clbViruslist.SetSelected(0,true ) ;
}
}
}

最佳答案

private void cbAll_CheckedChanged(object sender, EventArgs e)
{
if (cbAll.Checked)
{
foreach (ListItem item in clbViruslist.Items)
{
item.Selected = true;
}
}
}

or this is much better

private void checkBox1_CheckedChanged(object sender, EventArgs e)
{
foreach (ListItem item in clbViruslist.Items)
{
item.Selected = checkBox1.Checked;
}

}

关于c# - 单击单个复选框时尝试选择选中列表框中的所有项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12672030/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com