如何使用TextBox
向Button
添加文字?我知道怎么做但是如果有很多文本框我不能。如果有人知道请帮助我。
Private void button1_Click(object sender, Even target e)
{
Textbox1.text=Textbox1.text+"a";
}
这仅适用于一个文本框和其他文本框我还想使用此按钮将文本添加到文本框中。
答案 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";
}