天天看點

c# winform 循環周遊界面上的所有控件,foreach,Controls,AllowDrop

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;  

    }  

   }  

上一篇: PWM 調光