合計金額を計算するアプリケーションを作成しました。ボタンをクリックすると数量に 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
ありがとう。