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