我为WP 8开发了一个应用程序,需要隐藏在屏幕上的NavBar。但我不知道如何从WP 8应用程序中做到这一点。
答案 0 :(得分:0)
您的意思是隐藏系统托盘?
如果是这样,您可以在Universal app
和Silverlight app
中执行此操作。
在Windows手机通用应用中:
将此代码添加到app.xaml.cs或页面代码后面。
StatusBar statusBar = Windows.UI.ViewManagement.StatusBar.GetForCurrentView();
// Hide the status bar
await statusBar.HideAsync();
在Windows手机Silverlight app:
在你的xaml of Page中添加它:
Shell:SystemTray.IsVisible="False"
如果它是底部的虚拟导航栏,您可以尝试:
ApplicationView.SuppressSystemOverlays | suppressSystemOverlays property