0

我需要在 WPF 应用程序上托管一个 WinForms 应用程序。我按照此处的步骤操作,但出现错误:

System.Reflection.TargetInvocationException 未处理 消息:Se produjo una excepción en el destino de la invocación。

怎么了?我正在使用 VS2012 和 .NET 4.5。WinForms 应用程序只是一个Form带有Button. 事件单击显示MessageBox一条消息仅此Hello World而已。

4

1 回答 1

1

我以前使用过 WindowsFormsIntegration.dll,它工作正常。这应该可以帮助您入门。首先添加对 WindowsFormsIntegration 的引用。然后...

using System.Windows.Forms.Integration;

...

    private void Window_Loaded(object sender, RoutedEventArgs e)
    {
        var form = new Form1();
        form.TopLevel = false;

        WindowsFormsHost host = new WindowsFormsHost();
        host.Child = form;
        host.VerticalAlignment = System.Windows.VerticalAlignment.Top;
        host.HorizontalAlignment = System.Windows.HorizontalAlignment.Left;


        grid.Children.Add(host);
    }

...

<Window x:Class="WpfSandbox.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="350" Width="525"
        Loaded="Window_Loaded">
    <Grid x:Name="grid">
    </Grid>
</Window>

现在是简单的winform

public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    }

    private void button1_Click(object sender, EventArgs e)
    {
        MessageBox.Show("hello");
    }
}
于 2013-03-18T21:24:13.663 回答