使用 element host 获取托管 wpf 控件的父 winform 的句柄

发布于 2024-10-17 05:21:07 字数 108 浏览 2 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(1

尴尬癌患者 2024-10-24 05:21:07

您可以按如下方式使用 WindowInteropHelper 类:

WpfApplication1.Window1 window = new WpfApplication1.Window1();
WindowInteropHelper helper = new WindowInteropHelper(window);
helper.Owner = this.Handle;
window.Show();

更多信息请参见 此主题

You could use the WindowInteropHelper class as follows:

WpfApplication1.Window1 window = new WpfApplication1.Window1();
WindowInteropHelper helper = new WindowInteropHelper(window);
helper.Owner = this.Handle;
window.Show();

More information in this thread

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