如何将滑块与方向键输入绑定?

发布于 2024-11-26 11:50:38 字数 155 浏览 0 评论 0原文

我有一个滑块控件,我想要的只是用箭头键输入移动滑块拇指。现在,我可以看到它通过鼠标输入和 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

三五鸿雁 2024-12-03 11:50:38

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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文