作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试隐藏 Silverlight Windows Phone 7 应用程序顶部的状态栏。
我在搜索 stackoverflow 时发现了这个,但适用于 Xna。
graphics = new GraphicsDeviceManager(this);
graphics.IsFullScreen = true;
最佳答案
using Microsoft.Phone.Shell;
private void PhoneApplicationPage_Loaded(object sender, RoutedEventArgs e)
{
SystemTray.IsVisible = false;
}
关于windows-phone-7 - 如何在 WP7 (Silverlight) 中隐藏状态栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6674627/
我是一名优秀的程序员,十分优秀!