如何访问多个按钮或文本框或任何控件?

时间:2012-07-12 02:43:19

标签: c# .net winforms textbox

我想通过循环而非个人名称访问多个textbox名称​​ textbox1,textbox2,textbox3等。。出于这个原因,我创建了一个创建这个var名称的函数。

public string[] nameCre(string cntrlName, int size)
{
    string[] t = new string[size];

    for (int i = 0; i < size; i++)
    {
        t[i] = cntrlName.ToString() + (i + 1);
    }
    return t;
}

for nameCre("Textbox",5);所以这个,函数成功地返回TextBox1,TextBox2 ... TextBox5。

但是当我试图通过

将此字符串转换为TextBox控件时
string[] t = new string[50];
t=  nameCre("TextBox",5);    
foreach (string s in t)
{
    ((TextBox) s).Text = "";
}

它给了我错误:

  

无法将'string'类型转换为'System.Windows.Forms.TextBox'....

我怎样才能完成这项工作?

4 个答案:

答案 0 :(得分:0)

string[] t= new string[50];
    t= nameCre("TextBox",5);

foreach (string s in t){
TextBox tb = (TextBox)this.Controls.FindControl(s);
tb.Text = "";
}

如果你有很多文本框

foreach (Control c in this.Controls)
{
  if (c.GetType().ToString() == "System.Windows.Form.Textbox")
  {
    c.Text = "";
  }
}

答案 1 :(得分:0)

var t = nameCre("TextBox",5);

foreach (var s in t)
{
    var textBox = new TextBox {Name = s, Text = ""};
}

答案 2 :(得分:0)

也许你需要这个 -

        string[] t = new string[50];
        t = nameCre("TextBox", 5);

        foreach (string s in t)
        {
            if (!string.IsNullOrEmpty(s))
            {
                Control ctrl = this.Controls.Find(s, true).FirstOrDefault();
                if (ctrl != null && ctrl is TextBox)
                {
                    TextBox tb = ctrl as TextBox;
                    tb.Text = "";
                }
            }
        }

答案 3 :(得分:0)

这篇文章很老了,无论如何我觉得我可以给你(或其他任何有类似问题的人)答案:

我认为使用TextBoxs的Array(或List)将是这样做的最佳解决方案:

        // using an Array:
        TextBox[] textBox = new TextBox[5];
        textBox[0] = new TextBox() { Location = new Point(), /* etc */};
        // or
        textBox[0] = TextBox0; // if you already have a TextBox named TextBox0

        // loop it:
        for (int i = 0; i < textBox.Length; i++)
        {
            textBox[i].Text = "";
        }

        // using a List:  (you need to reference System.Collections.Generic)
        List<TextBox> textBox = new List<TextBox>();
        textBox.Add(new TextBox() { Name = "", /* etc */});
        // or
        textBox.Add(TextBox0); // if you already have a TextBox named TextBox0

        // loop it:
        for (int i = 0; i < textBox.Count; i++)
        {
            textBox[i].Text = "";
        }

// using an Array: TextBox[] textBox = new TextBox[5]; textBox[0] = new TextBox() { Location = new Point(), /* etc */}; // or textBox[0] = TextBox0; // if you already have a TextBox named TextBox0 // loop it: for (int i = 0; i < textBox.Length; i++) { textBox[i].Text = ""; } // using a List: (you need to reference System.Collections.Generic) List<TextBox> textBox = new List<TextBox>(); textBox.Add(new TextBox() { Name = "", /* etc */}); // or textBox.Add(TextBox0); // if you already have a TextBox named TextBox0 // loop it: for (int i = 0; i < textBox.Count; i++) { textBox[i].Text = ""; }

我希望这会有所帮助:)