在用c#做一个计算器的时候,如何将Button上的数字在textbox文本框上显示出来?附上了图片

2024-12-11 21:18:23
推荐回答(1个)
回答1:

可以这样。。
private void button1_Click(object sender, EventArgs e)
{
textBox1.Text += button1.Text;
}

private void button2_Click(object sender, EventArgs e)
{
textBox1.Text += button2.Text;
}
后面的省略。。。。。。。