检查NumericUpDown是否没有值

时间:2014-04-22 10:43:05

标签: c# winforms

如何检查用户是否将NumericUpDown控件留空?我已经看到另一个问题,检查' Text'属性但没有要检查的文本属性。

2 个答案:

答案 0 :(得分:4)

您可以检查Text属性,尽管它对设计器和IntelliSense是隐藏的。

试试这个样本吧。它确实有效:

if (string.IsNullOrEmpty(control.Text))
{
    // no value
}

答案 1 :(得分:0)

你可以使用,

 if(NumericUpDown.Text == "")
 {
     // If the value in the numeric updown is an empty string, replace with 0.
       NumericUpDown.Text = "0";
 }