锁定 ScrollViewer 中的滚动?
如何使用鼠标滚轮锁定 ScrollViewer 的垂直滚动?
How can I lock vertical scrolling of a ScrollViewer by using the mouse wheel ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何使用鼠标滚轮锁定 ScrollViewer 的垂直滚动?
How can I lock vertical scrolling of a ScrollViewer by using the mouse wheel ?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
如果我很好地理解您,您希望能够使用垂直滚动条而不是使用鼠标滚轮进行滚动。
在这种情况下,只需捕获 ScrollViewer 内容上的鼠标滚轮事件并将其标记为已处理:
并在后面的代码中:
If I understood you well, you wish to be able to scroll using the vertical scroll bar but not using the mouse wheel.
In this case just catch the mouse wheel event on your ScrollViewer content and mark it as handled:
and in code behind: