我希望我的Silverlight应用程序在全屏模式下运行(禁用那里的电池/信号条)
我试过了:
Application.Current.Host.Content.IsFullScreen = true;
但这不起作用,我该怎么做呢?
最佳答案
您需要将SystemTray设置为不可见
xaml(在页面声明中):
xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
shell:SystemTray.IsVisible="False"
码:
SystemTray.IsVisible = false;
关于c# - 使WP7上的Silverlight应用程序全屏运行,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8078558/