当复选框全部被选中时,我正在尝试选择选中列表框中的所有项目“如何获取,这是我的代码
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 ) ;
}
}
}