在WP7中,设置App.Current.RootVisual会隐藏系统托盘后面的UI的一部分

时间:2012-11-04 16:52:03

标签: windows-phone-7

在我的SilverLight应用程序中,显示加载屏幕后,我使用

显示主屏幕
App.Current.RootVisual = new MyPage();

新页面的部分UI隐藏在系统托盘下。

UI partly hidden

我该如何防止这种情况?

PS:如果我使用

,就不会发生这种情况
Uri destination = new Uri("/MyPage.xaml", UriKind.Relative);
((App)Application.Current).RootFrame.Navigate(destination);

然后用户可以通过按后退按钮返回加载屏幕。

0 个答案:

没有答案