Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个滑块控件,我想要的只是用箭头键输入移动滑块拇指。现在,我可以看到它随着鼠标输入和 PageUp/PageDown 键移动。但是箭头键没有任何反应。如何在 xaml 中更改此行为?
任何人都可以提供的任何帮助将不胜感激。
谢谢
拉蒂什
RangeBase 的默认 SmallChange 值为 0.1。由于您绑定到一个整数属性,我猜它正在被舍入/截断。尝试将 SmallChange 设置为 1,将 LargeChange 设置为其他值(例如 10)。