如何将滑块与方向键输入绑定?
我有一个滑块控件,我想要的只是用箭头键输入移动滑块拇指。现在,我可以看到它通过鼠标输入和 PageUp/PageDown 键移动。但使用箭头键没有任何反应。如何更改 xaml 中的这种行为?
任何人可以提供的任何帮助将受到高度赞赏。
谢谢拉希什
I have a slider control and all I wanted is to move the slider thumb with the arrow key inputs. Right now, I could see it moves with mouse inputs and PageUp/PageDown keys. But nothing happens with the arrow keys. How can I change this behaviour in xaml?
Any help anybody could produce would highly appreciated.
Thanks
Ratheesh
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
RangeBase 的默认 SmallChange 值为 0.1。由于您绑定到整数属性,我猜测它正在被舍入/截断。尝试将 SmallChange 设置为 1,将 LargeChange 设置为其他值(例如 10)。
The default SmallChange value for a RangeBase is 0.1. Since you are bound to an integer property I'm guessing that is getting rounded/truncated. Try setting the SmallChange to 1 and the LargeChange to something else (e.g. 10).