如何在 Devexpress TextEdit 框中设置最大数值?
我有一个仅包含数字的 TextEdit 框,其 MaxLength
设置为 2,允许用户输入 0-99。我可以将其限制为较小的范围(例如 0-30),而不捕获 TextChanged
事件、验证输入并显示消息(或类似方法)吗?
I've got a numbers-only TextEdit box with MaxLength
set to 2, allowing the user to enter 0-99. Can I restrict this to a smaller range, say 0-30, without catching the TextChanged
event, validating the input and showing a messsage (or similar method)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
评论(4)
~没有更多了~
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
您应该使用
SpinEdit
控件并设置 max 和 min 属性。You should use the
SpinEdit
control and set the max and min properties.