我试图将我的数量和价格文本框中的值相乘,然后将其传递到一个总文本框中,每次按下添加按钮时都会更新。以下是我迄今为止尝试过的。
如何让它在我的总文本框中显示产品并累积它?例如,在数量 4 和价格 4 时,它显示为 16,然后如果我输入数量 2 和价格 2,它将显示为 20。
private void add_btn_Click(object sender, EventArgs e)
{
try
{
if (customer_textBox.Text == "")
{
MessageBox.Show(
"Please enter valid Customer");
}
if (quantity_textBox.Text == "")
{
MessageBox.Show(
"Please enter valid Quantity");
}
if (price_per_item_textBox.Text == "")
{
MessageBox.Show(
"Please enter valid Price");
}
else
{
decimal total = Decimal.Parse(total_textBox.Text);
total = int.Parse(quantity_textBox.Text) * int.Parse(price_per_item_textBox.Text);
total += total;
total_textBox.Text = total.ToString();
}
quantity_textBox.Clear();
customer_textBox.Clear();
price_per_item_textBox.Clear();
item_textBox.Clear();
}
catch (FormatException)
{
}
total_textBox.Focus();
}