如何限制 numericupdown 控件仅接受整数
我有一个 Windows numericupdown 控件。我想限制它,以便用户只能在其中输入整数。我该怎么做?目前用户也可以输入十进制数。 谢谢 PS我正在使用.net
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我有一个 Windows numericupdown 控件。我想限制它,以便用户只能在其中输入整数。我该怎么做?目前用户也可以输入十进制数。 谢谢 PS我正在使用.net
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(6)
我做了一些实验,发现了这个解决方法:
这样您也将无法输入千位分隔符,但您可以通过首先找出千位分隔符是什么并允许它来添加它。
I did a little experimenting and found this workaround:
This way you will not be able to type thousand separators either but you could add that by first finding out what the thousand separator is and allowing that too.
设置
DecimalPlaces
属性为零。Set the
DecimalPlaces
property to zero.设置
DecimalPlaces = 0
:请参阅文档:https://learn.microsoft.com/en-us/dotnet/api/system.windows.forms.numericupdown.decimalplaces
Set
DecimalPlaces = 0
:See docs: https://learn.microsoft.com/en-us/dotnet/api/system.windows.forms.numericupdown.decimalplaces
如果您使用 AjaxControlToolkit,则只需将 FilteredTextBoxExtender 与 NumericUpDownExtender 结合起来即可:
If you are using the AjaxControlToolkit, you can just combine the FilteredTextBoxExtender with the NumericUpDownExtender:
如果您有权访问 DevExpress 控件,则应使用 SpinEdit控件并将其
Properties.IsFloatValue
设置为 false。If you have access to DevExpress controls, you should use a SpinEdit control and set its
Properties.IsFloatValue
to false.我使用它不允许在当前系统上输入数字小数分隔符:
其他一切都有效(退格键等)
I'm using this to not allow the typing of the number decimal separator on the current system:
Everything else works (Backspace, etc.)