让WP7上的silverlight应用程序全屏运行

时间:2011-11-10 11:07:25

标签: c# silverlight windows-phone-7 windows-phone-7.1

我希望我的silverlight应用程序全屏运行(禁用那里的电池/信号栏)

我试过了:

Application.Current.Host.Content.IsFullScreen = true;

但它不起作用,我怎么能这样做?

1 个答案:

答案 0 :(得分:6)

您需要将SystemTray设置为不可见

xaml(在页面声明中):

xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
shell:SystemTray.IsVisible="False"

代码:

SystemTray.IsVisible = false;