62,267
社区成员
发帖
与我相关
我的任务
分享
List<string> checkedCbxID = new List<string>();
foreach (Control ctrl in this.ControlsControls)
{
if (ctrl is CheckBox)
{
CheckBox cbx = ctrl as CheckBox;
if (cbx.Checked)
{
checkedCbxID.Add(cbx.ID);
}
}
}