c# 中我想遍历一个Form下所有的Label然后改变他们的背景色,如何遍历?
foreach(System.Windows.Forms.Controlcontrolinthis.Controls)//遍历groupBox2上的所有控件{contro...
foreach (System.Windows.Forms.Control control in this.Controls)//遍历groupBox2上的所有控件
{
control.BackColor = Color.Red;
}
这个写法不行啊,每次this.Controls只能取出一个大的对象,如何取到其中一个个的控件对象呢? 展开
{
control.BackColor = Color.Red;
}
这个写法不行啊,每次this.Controls只能取出一个大的对象,如何取到其中一个个的控件对象呢? 展开
推荐于2016-12-04
展开全部
foreach (Control control in this.Controls)
{
if (control is Lable)
control.BackColor = Color.Red;
else if (control.Controls.Count>0)
{
foreach (Control subcontrol in control.Controls) //查找子控件
if (subcontrol is Lable)
subcontrol.BackColor = Color.Red;
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询