0

我在流程布局面板中有许多组框,它们都是以编程方式生成的。当我尝试在运行时找到任何特定的组框时,什么都没有出现。这是我的代码,请帮助。

    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); 
} 
4

1 回答 1

0

我得到它只是在控件名称中添加 trim() 。

现在工作代码是

 foreach (Control ctr in flowLayoutPanel1.Controls) 
{ 

if (ctr.Name.Trim()=="BSE") 

   {
     MessageBox.Show("Control is found");
   } 
}

这个 Trim() 毁了我的一整天。谢谢唐博蒂诺特

于 2013-06-27T14:33:48.157 回答