Usually I open a new window like this:
new Sensors(this).Show();
this.Hide();
But this method doesn’t work when I try to open a WPF window from a Form and vice versa, So I did this:
System.Diagnostics.Process.Start(appAddress);
this.Close();
The promblem when its done this way is that the debugger won’t debug the new Form/Window.
Is there a way to do this without having this problem?
Does this work (untested)?
http://weblogs.asp.net/jdanforth/archive/2008/07/29/open-a-wpf-window-from-winforms.aspx