使用 element host 获取托管 wpf 控件的父 winform 的句柄
我有一个 winform 应用程序,它使用 element host 托管 wpf 控件。当我尝试使用时 Window.GetWindow(this),返回null。我想要对父 winform 的引用。
I have a winform application that hosts a wpf control using element host. when I try to use
Window.GetWindow(this), null is returned. I want the reference to the parent winform.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以按如下方式使用 WindowInteropHelper 类:
更多信息请参见 此主题
You could use the WindowInteropHelper class as follows:
More information in this thread