首页 > 代码库 > c# winform 循环遍历界面上的所有控件,foreach,Controls,AllowDrop
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;
- }
- }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。