有什么办法让 WPF Adorner 忽略鼠标吗?
有没有办法让 WPF 装饰器完全忽略鼠标,以便装饰器后面的 UIElement 仍然获取鼠标事件,就好像装饰器不存在一样?
Is there any way to make WPF adorner ignore mouse entirely so that the UIElement behind the adorner still gets mouse events as if the adorner does not exist?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将
Adorner
的IsHitTestVisible
属性设置为 falseSet the
IsHitTestVisible
property of theAdorner
to false如果您使用鼠标事件的隧道版本而不是冒泡事件(即
PreviewMouseDown
而不是MouseDown
),您将收到鼠标首先从UIElement
获取事件,并能够通过将e.Handled
设置为 true 来阻止它们到达装饰器。If you use the tunneling version of the mouse events rather than the bubbling events (i.e.,
PreviewMouseDown
instead ofMouseDown
), you will receive the mouse events from theUIElement
first, and be able to stop them from reaching the adorner by settinge.Handled
to true.