从WindowsFormsHost中的Windows窗体控件获取WPF窗口

时间:2017-05-18 18:57:32

标签: c# wpf gdi windowsformhost

我有一个Windows窗体控件,它托管在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所在窗口中的事件。这在Windows窗体中很简单,因为我可以使用FindForm方法获取我的控件所在的窗体。但是,显而易见原因,当控件在WindowsFormsHost中时,FindForm不起作用。我的控件的父级是System.Windows.Forms.Integration.WinFormsAdapter,其父级为空。

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

2 个答案:

答案 0 :(得分:2)

我要感谢elgonzo,他建议我使用反射来获取WinFormsAdapter类中的字段。以下是我找到窗口的方法:

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)找到其窗口。

有一点需要注意,如果WindowsFormsHost使用ElementHost放置在Windows窗体中,GetWindow将返回null,因为没有Window。

答案 1 :(得分:0)

只需向窗口和问题添加属性,然后在代码中传递其他窗口。这听起来很低技术,你必须能够妥协。不确定如何使用100%Xaml。

如果您不喜欢这样,请将其与其他选项(winapi等)的适口性进行比较。这可以是你的电话!