0

我需要将 WPF 项目与 Windows 游戏项目连接起来。

我在 Windows Game 中完成了一个项目,在 WPF 中完成了另一个项目。

我需要通过单击 WPF 中的按钮从 DemoScene 项目中打开 Game1。

这是WPF项目中按钮单击的方法...

私人无效Playgame_Click(对象发送者,RoutedEventArgs e){

        System.Diagnostics.Process.Start(i don't know how to put on this);
    }

我怎样才能做到这一点?(我是初学者)

4

2 回答 2

0
System.Diagnostics.Process.Start(@"c:\game\Game1.exe");

用你的路径试试上面的方法。

更多信息:http: //msdn.microsoft.com/en-us/library/53ezey2s.aspx

于 2013-09-06T04:24:44.410 回答
0

将您的两个项目放在同一个文件夹中,例如,在您的 WPF 应用程序文件夹中,存在路径“game\Game1.exe”。然后,您可以在 WPF 应用程序按钮单击事件中尝试以下代码。

System.Diagnostics.Process.Start(AppDomain.CurrentDomain.StartupPath + "game\\Game1.exe");
于 2013-09-06T04:38:53.013 回答