Вопрос

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