CheckedListBox怎样默认全部选中.
答案:2 悬赏:80 手机版
解决时间 2021-03-17 21:38
- 提问者网友:暗中人
- 2021-03-17 13:15
CheckedListBox怎样默认全部选中.
最佳答案
- 五星知识达人网友:等灯
- 2021-03-17 14:08
for (int i = 0; i < chkBoxList.Items.Count; i++)
{
chkBoxList.SetItemChecked(i, true);
}
遍历改变选中状态。
{
chkBoxList.SetItemChecked(i, true);
}
遍历改变选中状态。
全部回答
- 1楼网友:封刀令
- 2021-03-17 15:29
string output = string.empty;
for (int i = 0; i < checkedlistbox1.checkedindices.count; i++)
{
output += checkedlistbox1.items[
checkedlistbox1.checkedindices[i]].tostring() + "\r\n ";
}
messagebox.show(output);
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯