How to connect WPF Application project to Windows Game project?
I need to connect a WPF project with a Windows Game project.
I have one project done in Windows Game and another project done in WPF.
I need to open the Game1 from DemoScene project by clicking a button in WPF.
And this is method in WPF project on button click...
private void Playgame_Click(object sender, RoutedEventArgs e) {
System.Diagnostics.Process.Start(i don't know how to put on this);
}
How can I do this? (I'm a beginner)
No comments:
Post a Comment