我是编程新手,但遇到了问题。我有两个按钮和一个文本框。当我按下按钮时,文本框中将显示一个数字,但是当我按下第二个按钮时,文本框中的数字将覆盖它并替换它,而不是在文本框中添加它。我该如何解决?我想要添加值而不是替换它。

public partial class Form1 : Form
{
    int value1 = 0;
    int value2 = 0;
    public Form1()
    {
        InitializeComponent();
    }

    private void button1_Click(object sender, EventArgs e)
    {
        value1++;
        textBox1.Text = value1.ToString();
    }

    private void button2_Click(object sender, EventArgs e)
    {
        value2 += 2;
        textBox1.Text = value2.ToString();
    }
}


}

最佳答案

如果要添加两个整数并将结果分配回textBox1,则必须


textBox1.Text解析为整数:int.Parse(textBox1.Text)
总计值:int.Parse(textBox1.Text) + value2
将结果转换回string(...).ToString()


实现方式:

private void button2_Click(object sender, EventArgs e) {
  value2 += 2;

  textBox1.Text = (int.Parse(textBox1.Text) + value2).ToString();
}

关于c# - 使用按钮将数字添加到文本框,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47761088/

10-11 01:50