may be you can try..nextScreen.Visible=true; I am using visible property to set true.
Hi,
I am developing an app based on a dialog compareable to the link app. I used to hide the particular screen and show the next screen with the following code:
this.Hide();
MeterActivScreen nextScreen = new MeterActivScreen();
nextScreen.Show();
Theese approach doesn't work. The app crashs with showing a empty normal window (with close restore, minimize button). Does anybodz know an alternative?
Cheers,
Andre
thanks for that suggestion! But it doesn't
this.Visibility = Visibility.Collapsed;
MeterActivScreen nextScreen = new MeterActivScreen();
nextScreen.Visibility = Visibility.Visible;
When I execute the UI as normal window it works. When I change it to TS:InfoviewWindow it doesn't.
RSS

