C# 检查panel所有的checkbox 是否被选中
foreach (Control c in panel Controls) { if (c is CheckBox && ((CheckBox)c).Checked == true) { MessageBox.Show(c.Tag.ToString()); } }