当用户更改NumericUpDown中的数量时,总价格将如何显示在Total TextBox中?

时间:2017-01-23 20:20:08

标签: c# database

enter image description here

当用户更改NumericUpDown中的数量时,总价格将如何显示在Total TextBox中

1 个答案:

答案 0 :(得分:0)

在“表单设计器”中,右键单击NumericUpDown控件并选择属性。在属性中,选择“事件”过滤器,然后双击“ValueChanged”事件。您可以将代码放在此事件方法中进行计算。

private void numericUpDown1_ValueChanged(object sender, EventArgs e)
{
    CalculateTotalPrice();
}