我做了一个计算总价的应用程序,我希望当单击按钮时,它会在数量上加 1,但它只加 1,当我再次单击按钮时,它不加,有没有办法循环一个按钮?
这是我的示例代码
int intclicks;
private void button10_Click(object sender, EventArgs e)
{
intclicks++;
int qty = 1;
{
if (intclicks > 0)
{
int totalqty;
totalqty = qty + 1;
textBox3.Text = totalqty.ToString();
totalPrice();
}
}
}
套装在另一个中totalPrice();
显示总价textBox
,谢谢。