鼠标滚轮在 ScrollViewer 的子控件上方时不起作用

发布于 2024-07-17 10:19:37 字数 288 浏览 4 评论 0原文

我希望 ScrollViewer 的子控件能够自动将 MouseWheel 事件传递给 ScrollViewer,但事实并非如此。

我有一个带有列表框的 ScrollViewer。 如果我手动将 ListBox 的宽度调整为小于 ScrollViewer,MouseWheel 将在所有 ScrollViewer 上工作,但当鼠标位于 ListBox 上方时不起作用。

执行此操作的标准方法是什么? 我是否在 ListBox 上放置一个事件触发器来在父级上触发事件? 我是否在后面的代码中处理并重新路由该事件?

I was kind of expecting my ScrollViewer's child controls to hand the MouseWheel events back up the the ScrollViewer automatically, and that's not the case.

I have a ScrollViewer with a ListBox in it. If I manually resize the width of the ListBox to be less than the ScrollViewer, the MouseWheel works on all of the ScrollViewer but has no effect when the mouse is positioned above the ListBox.

What's the standard way to do this? Do I put an event trigger on the ListBox that fires the event on the parent? Do I handle and reroute the event in the code behind?

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

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

发布评论

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

评论(1

氛圍 2024-07-24 10:19:37

ListBox 的模板中有一个 ScrollViewer,因此 ScrollViewer 将处理事件并阻止它们在可视化树中传播。

您到底想通过在 ScrollViewer 中放置 ListBox 来实现什么目的? 也许您需要重新模板化 ListBox,但如果没有进一步的信息就无法确定。

The ListBox's template has a ScrollViewer in it, so that ScrollViewer will be handling the events and stopping them from propagating up the visual tree.

What exactly are you trying to achieve by having a ListBox inside a ScrollViewer? Perhaps you need to re-template the ListBox, but it's impossible to say without further info.

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