6

我需要找出当前形式中是否存在具有某些名称的组件。我在字符串变量中有组件的名称,如果它不存在,我需要创建它。我使用此代码

Control c = Controls.Find(New, true)[0];   //najiti komponenty

        if (c == null) {}

但它给了我错误,索引超出了数组的范围。我知道这段代码很糟糕,但我不知道写得好,谷歌也不帮我。

4

2 回答 2

8

Find方法返回一个控件数组,即Control[]. 您正在尝试访问空数组的第一个元素,从而导致IndexOutOfRangeException 您应该尝试:

Control[] controls = Controls.Find(New, true); 
if (controls.Length > 0) 
{
    //logic goes here
}
else 
{
    //no components where found
}
于 2013-01-06T14:37:32.243 回答
7

尝试使用 Control.ContainsKey() 方法,(在我的示例中传递一个包含控件名称而不是引用文本的字符串变量):

if (!this.Controls.ContainsKey("MyControlName"))
{
    // Do Something
}
于 2013-01-06T14:46:00.497 回答