c# 如何判断动态添加的控件已经存在

2024-11-30 23:46:17
推荐回答(1个)
回答1:

用循环遍历,比较控件名称

Control ctr=new Button();//你所创建的控件
ctr.Name="123";//控件的名称
foreach (Control item in this.Controls)
{
if (item.Name==ctr.Name)
{
MessageBox.Show("你创建的控件已经存在");
}
}