码迷,mamicode.com
首页 > Windows程序 > 详细

c# winform 循环遍历界面上的所有控件,foreach,Controls,AllowDrop

时间:2014-04-30 17:55:41      阅读:867      评论:0      收藏:0      [点我收藏+]

标签:winform   com   style   class   c   tar   t   sp   art   ble   window   

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;//在这里设置
}

 }  

 

 

  1. foreach (System.Windows.Forms.Control control in this.Controls)//遍历Form上的所有控件  
  2.    {  
  3.     if (control is System.Windows.Forms.PictureBox)  
  4.     {  
  5.      System.Windows.Forms.PictureBox pb = (System.Windows.Forms.PictureBox)control;  
  6.      pb.AllowDrop = true;  
  7.     }  
  8.    }  

c# winform 循环遍历界面上的所有控件,foreach,Controls,AllowDrop,码迷,mamicode.com

c# winform 循环遍历界面上的所有控件,foreach,Controls,AllowDrop

标签:winform   com   style   class   c   tar   t   sp   art   ble   window   

原文地址:http://www.cnblogs.com/jianghaidong/p/3699225.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!