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