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?

有帮助吗?

其他提示

1- of course the debugger will not work, cuz you make the windows open a new app, in the debug mode your app is working under Visual Studio
2- i checked this problem and it works fine, thats mean you did something wrong, just check your reference.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top