c# 中我想遍历一个Form下所有的Label然后改变他们的背景色,如何遍历...
发布网友
发布时间:2024-10-05 04:00
我来回答
共2个回答
热心网友
时间:2024-10-10 05:26
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;
}
}
热心网友
时间:2024-10-10 05:27
你这个遍历的是什么控件啊,没看出来