Play winform(c#)CheckListBox[4]
CheckListBox的使用
操作方法
- 01
建好工程,将CheckBox拖进程序 ,在属性Item添加要选择项如图
- 02
在botton按钮button1_Click事件中添加如下程序 for (int i = 0; i < checkedListBox1.Items.Count; i++) { if (checkedListBox1.GetItemChecked(i)) { MessageBox.Show(checkedListBox1.GetItemText(checkedListBox1.Items[i])); } }
- 03
效果如下:弹出对话框
赞 (0)