我有一个Windows窗体应用程序,其中包含NumericUpDown
控件,Minimum
和Maximum
值相应地设置为(50:80),步骤1。
表单加载时,NumericUpDown
显示50。
我知道NumericUpDown
用于选择数字和数字类型并且总是有值,但有什么方法可以在表单加载时显示为空?
答案 0 :(得分:12)
您无法将默认NumericUpDown控件设为空。 NumericUpDown需要增加/减少的值。如果“空”只是在用户首先看到表单时看起来很空白,那么你可以通过将NumericUpDown的Text设置为空来破解它:
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
NumericUpDown1.Text = ""
End Sub
因为NumericUpDown1看起来是空的,但NumericUpDown1.Value仍然是50。