在我的SilverLight应用程序中,显示加载屏幕后,我使用
显示主屏幕App.Current.RootVisual = new MyPage();
新页面的部分UI隐藏在系统托盘下。
我该如何防止这种情况?
PS:如果我使用
,就不会发生这种情况Uri destination = new Uri("/MyPage.xaml", UriKind.Relative);
((App)Application.Current).RootFrame.Navigate(destination);
然后用户可以通过按后退按钮返回加载屏幕。