-2

我只是想弄清楚如何在 TextBox 中输入一个数字并单击一个按钮并使该数字进入另一个 TextBox。我知道我需要将价格设为双倍值并将其设为零。我只是想知道如何使按钮控制第一个文本框。

private void DepositTextBox_TextChanged(object sender, EventArgs e)
    {
        string deposits = Console.ReadLine();
        double deposit = double.Parse(deposits);
        deposit += balance;
    }

    private void WithdrawTextBox_TextChanged(object sender, EventArgs e)
    {
        string withdraws = Console.ReadLine();
        double withdraw = double.Parse(withdraws);
        withdraw += balance;
    }

这是我的代码,但是当我在文本框中输入数字或字母后立即运行它时,它说值不能为空,参数名称:值。

4

1 回答 1

0

为什么您说的是按钮单击,但您的代码示例显示了 TextChanged 事件?

听起来您可能应该创建一个表单级属性来存储总余额并对其进行操作。

在您的 ButtonClick 事件中,将 textbox.Text 转换为数字类型,然后对总余额执行适当的数学运算。

然后只需在另一个文本框中显示该余额属性。

public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    }
    private double balance;

    private void btnDeposit_Click(object sender, EventArgs e)
    {
        double value = Convert.ToDouble(txtDeposit.Text);
        balance += value;

        txtBalance.Text = balance.ToString();
    }

    private void btnWithdraw_Click(object sender, EventArgs e)
    {
        double value = Convert.ToDouble(txtWithdraw.Text);
        balance -= value;

        txtBalance.Text = balance.ToString();
    }
}
于 2013-10-09T18:16:46.990 回答