2013-09-06

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)
{

How can I do this?
(I'm a beginner)

Show more