foreach (system.windows.forms.control control in this.groupbox2.controls)//周遊groupbox2上的所有控件
{
if (control is system.windows.forms.picturebox)
{
system.windows.forms.picturebox pb = (system.windows.forms.picturebox)control;
pb.allowdrop = true;
}
if (cl is checkbox)
{
label lab = cl as
label;
lab.enabled =
false;//在這裡設定
}
}
foreach (system.windows.forms.control control in this.controls)//周遊form上的所有控件
{
if (control is system.windows.forms.picturebox)
{
system.windows.forms.picturebox pb = (system.windows.forms.picturebox)control;
pb.allowdrop = true;
}
}