我想强制用户仅使用箭头来编辑 NumericStepper 的值,这样他们就无法直接在值字段中键入值
使用 NumericStepper 时,我想强制用户只能使用 NumericStepper 的向上和向下箭头编辑值。我不希望用户能够直接输入值。我怎样才能在 Flex 4 中做到这一点?有人可以举个例子吗?
谢谢
When using the NumericStepper I want to force the user to only be able to edit the value using the NumericStepper's up and down arrows. I do not want the user to be able to type in a value directly. How can i do this in flex 4? Can someone please provide an example?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要将 NumericStepper 的 textDisplay 设置为不可编辑。您可以在组件初始化后执行此操作:
或按照说明创建自定义皮肤 此处
Yo need to set the NumericStepper's textDisplay as non editable. You can do it once the component has been initialized:
or creating a custom skin as explained here
您可以尝试另一种方法,这样就无法更改 NumericStepper 中的值。这些值将变得不可编辑。
You can try another way so that you can not change the value in NumericStepper. These value would become non-editable.