winform里面怎么获取numericUpDown控件的值

2024-11-29 21:37:32
推荐回答(2个)
回答1:

仅供参考:
private void button1_Click(object sender, EventArgs e)
{
MessageBox.Show( this.numericUpDown1.Value.ToString());
}
value这个属性

回答2:

应该是.Value,类型是decimal.