从 WPF 到 WinForms 的气泡鼠标事件
我使用 ElementHost 将 WPF 控件托管在 WinForms 控件内。 WinForms 控件有一个上下文菜单。我想在用户右键单击 WPF 控件时显示上下文菜单。这怎么能做到呢?看来鼠标事件没有从 WPF 冒泡到 WinForms。
I have WPF control hosted inside a WinForms control using ElementHost. The WinForms control has a context menu. I want to show the context menu when user right click on the WPF control. How can this be done? It seems mouse event is not bubbled from WPF to WinForms.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它不会自动冒泡,因为您可能首先在 WPF 控件中处理了它。但是,您可以轻松地自己添加它。
在您的 WPF 用户控件中,公开一个在鼠标右键上触发的事件:
然后在带有 element host 的 winforms 控件中,您可以像这样使用它:
it is not automatically bubbled up, as you might have handled it in the WPF control in the first place. However, you can easily add this yourself.
In your WPF user control, expose an event that you trigger on right mouse up:
Then in your winforms control with element host you can use it like so: