C# 遍历CheckBox的三种简单方法
//遍历CheckBox方法1 foreach (Control c in groupBox1.Controls)//遍历groupBox1内的所有控件 { if (c is CheckBox)//只遍历CheckBox控件 { ((CheckB