使用C#中的按钮添加文本框值

时间:2017-04-11 06:41:22

标签: c#

如何使用TextBoxButton添加文字?我知道怎么做但是如果有很多文本框我不能。如果有人知道请帮助我。

Private void button1_Click(object sender, Even target e)
{
    Textbox1.text=Textbox1.text+"a";
}

这仅适用于一个文本框和其他文本框我还想使用此按钮将文本添加到文本框中。

1 个答案:

答案 0 :(得分:1)

这是你在找什么?

        Private void button1_Click(object sender, Even target e)
        {
            Textbox1.text = Textbox1.text + "a";
            Textbox2.text = Textbox2.text + "a";
            Textbox3.text = Textbox3.text + "a";

        }