从 Windows Forms 控件中获取 WPF window WindowsFormsHost

Get WPF window from Windows Forms control in WindowsFormsHost

我有一个 Windows Forms 控件托管在 WindowsFormsHost 中。这是我用来完成此操作的 XAML:

<Window x:Class="Forms.Address.MyWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:Forms.Address"
        xmlns:wf="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"  
        mc:Ignorable="d"
        Title="New Window" Height="500" Width="720">
    <Grid>
        <WindowsFormsHost x:Name="host">
            <local:MyFormsControl x:Name="genericName"/>
        </WindowsFormsHost>
    </Grid>
</Window>

我想监听 WindowsFormsHost 所在的 window 的事件。这在 Windows 表单中很简单,因为我可以使用 FindForm方法来获取我的控件所在的表单。但是,由于显而易见的原因,当控件位于 WindowsFormsHost 内时,FindForm 不起作用。我的控件的父级是 System.Windows.Forms.Integration.WinFormsAdapter 而它的父级是 null.

我的问题是:如何找到包含我的控件的window?

只需向 window(s) 和问题添加属性,然后在代码中传递另一个 window。这听起来技术含量低,您必须能够接受妥协。不确定如何使用 100% Xaml.

如果您不喜欢这个,请将其与其他选项(winapi 等)的适口性进行比较。由您决定!

感谢 elgonzo 建议我使用反射从 WinFormsAdapter class 获取字段。这是我找到 Window:

的方法
public static Window findParentWindow(Control control) {
    WindowsFormsHost host = findWPFHost(control);
    return Window.GetWindow(host);
}//FindParentWindow

private static WindowsFormsHost findWPFHost(Control control) {
    if (control.Parent != null)
        return findWPFHost(control.Parent);
    else {
        string typeName = "System.Windows.Forms.Integration.WinFormsAdapter";
        if (control.GetType().FullName == typeName) {
            Assembly adapterAssembly = control.GetType().Assembly;
            Type winFormsAdapterType = adapterAssembly.GetType(typeName);
            return (WindowsFormsHost)winFormsAdapterType.InvokeMember("_host", BindingFlags.NonPublic | BindingFlags.GetField | BindingFlags.Instance, null, control, new string[0], null);

        } else
            throw new Exception("The top parent of a control within a host should be a System.Windows.Forms.Integration.WinFormsAdapter, but that is not what was found.  Someone should propably check this out.");
    }//if
}//FindWPFHost

我所做的是首先递归地找到 WinFormsAdapter,然后使用反射从中提取 _host 字段。这是 WPF WindowsFormsHost 对象,因此可以使用 Window.GetWindow(host).

找到它的 window

需要注意的是,如果 WindowsFormsHost 使用 ElementHost 放置在 Windows 表单中,GetWindow 将 return null 因为没有 [=23] =].