如何在Windows Phone 8应用程序中隐藏屏幕导航栏?

时间:2016-01-29 22:40:23

标签: windows-phone-8

我为WP 8开发了一个应用程序,需要隐藏在屏幕上的NavBar。但我不知道如何从WP 8应用程序中做到这一点。

1 个答案:

答案 0 :(得分:0)

您的意思是隐藏系统托盘

如果是这样,您可以在Universal appSilverlight 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