如何验证文本框(双精度型、浮点型)
我需要验证文本框。 范围 0.0-200.0 并使用 ',' 和 '.' 这怎么办?
I need validate textbox.
range 0.0-200.0
and work with ',' and with '.'
How do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Silverlight 工具包中的 NumericUpDown 控件。
不要尝试用文本框重新发明轮子;使用专门为此目的设计的控件更加用户友好。很明显,他们需要输入一个数字,他们可以使用可识别的方法轻松更改当前值,并且您不必编写和测试一堆自定义验证代码。
Use the NumericUpDown control in the Silverlight toolkit.
Don't try and reinvent the wheel with a textbox; using a control explicitly designed for this purpose is much more user-friendly. It's immediately obvious that they're expected to enter a number, they can easily change the current value using recognizable methods, and you're freed from having to write and test a bunch of custom validation code.