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

2024年11月29日 21:37
有2个网友回答
网友(1):

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

网友(2):

应该是.Value,类型是decimal.