锁定 ScrollViewer 中的滚动?

发布于 2024-08-14 10:48:15 字数 37 浏览 2 评论 0原文

如何使用鼠标滚轮锁定 ScrollViewer 的垂直滚动?

How can I lock vertical scrolling of a ScrollViewer by using the mouse wheel ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

眼眸里的快感 2024-08-21 10:48:15

如果我很好地理解您,您希望能够使用垂直滚动条而不是使用鼠标滚轮进行滚动。

在这种情况下,只需捕获 ScrollViewer 内容上的鼠标滚轮事件并将其标记为已处理:

<ScrollViewer>
    <StackPanel MouseWheel="MyContent_MouseWheel">
        ...
    </StackPanel>
</ScrollViewer>

并在后面的代码中:

private void MyContent_MouseWheel(object sender, MouseWheelEventArgs e)
{
    e.Handled = true;
}

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:

<ScrollViewer>
    <StackPanel MouseWheel="MyContent_MouseWheel">
        ...
    </StackPanel>
</ScrollViewer>

and in code behind:

private void MyContent_MouseWheel(object sender, MouseWheelEventArgs e)
{
    e.Handled = true;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文