我在流程布局面板中有许多组框,它们都是以编程方式生成的。当我尝试在运行时找到任何特定的组框时,什么都没有出现。这是我的代码,请帮助。
foreach (Control ctr in flowLayoutPanel1.Controls)
{
if (ctr.Name=="BSE")
{
MessageBox.Show("Control is found");
}
}
创建控件的代码:
var Allzone = (from a in db.Zones select a.name).ToList();
foreach (var z in Allzone)
{
GroupBox g = new GroupBox();
g.Text = z;
g.Name = z;
g.Tag = z;
g.Font = new Font("Verdana", 8,FontStyle.Bold);
g.ForeColor = Color.White;
g.Width = 49;
g.Height = 90;
flowLayoutPanel1.Controls.Add(g);
}