如何将WPF应用程序项目连接到Windows Game项目?

时间:2013-09-06 04:22:27

标签: c# wpf visual-studio-2010 xna-4.0

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

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

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

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

private void Playgame_Click(对象发送者,RoutedEventArgs e)         {

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

我该怎么做? (我是初学者)

2 个答案:

答案 0 :(得分:0)

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

尝试使用您的路径进行上述操作。

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

答案 1 :(得分:0)

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

System.Diagnostics.Process.Start(AppDomain.CurrentDomain.StartupPath + "game\\Game1.exe");