如何在WP7(Silverlight)中隐藏状态栏
我正在尝试隐藏 Silverlight Windows Phone 7 应用程序顶部的状态栏。
我在搜索 stackoverflow 时发现了这个,但适用于 Xna。
graphics = new GraphicsDeviceManager(this);
graphics.IsFullScreen = true;
我在我的应用程序中尝试过,但它不起作用。 我知道这是可能的,因为 board Express 和 xda 应用程序具有隐藏/显示状态栏的功能。
I'm trying to hide the statur bar on the top of my Silverlight Windows Phone 7 app.
I found this while searching stackoverflow, but is for Xna.
graphics = new GraphicsDeviceManager(this);
graphics.IsFullScreen = true;
I tried it in my app but it does not work.
I know it is possible because the board express and xda apps have the feature to hide/show the statusbar.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为 Mahantesh 的答案应该是 WP8 可接受的答案:
将其放入 XAML 中,因为它已经在那里定义了属性(默认设置为 true)。
I think Mahantesh's answer should be the accepted one for WP8:
Put that in the XAML as it the property already defined there (set to true by default).
替代方案:
Alternative: