c# – 检查NumericUpDown是否为空

前端之家收集整理的这篇文章主要介绍了c# – 检查NumericUpDown是否为空前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何检查用户是否将NumericUpDown控件留空,删除其上的值?
所以我可以将它重新赋值为0.

解决方法

if(NumericUpDown1.Text == "")
{
     // If the value in the numeric updown is an empty string,replace with 0.
     NumericUpDown1.Text = "0";
}
原文链接:https://www.f2er.com/csharp/96772.html

猜你在找的C#相关文章