WPF中的IWin32Window

前端之家收集整理的这篇文章主要介绍了WPF中的IWin32Window前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个excel AddIn,它暴露了IWin32Window作为它的主要UI.
我想显示一个 WPF窗口,使用它作为它的父.

我该怎么做呢?

您可以使用 WindowInteropHelper适当地对WPF窗口进行父代:
var helper = new WindowInteropHelper(theWpfWindow);
helper.Owner = win32Window.Handle;

theWpfWindow.Show(); // This is now parented appropriately
原文链接:https://www.f2er.com/windows/363935.html

猜你在找的Windows相关文章