c#中如何获得控件numericupdown中的值?

2024-11-29 15:18:41
推荐回答(2个)
回答1:

private void button1_Click(object sender, EventArgs e)
{
MessageBox.Show( this.numericUpDown1.Value.ToString());
}

value这个属性

回答2:

dsf