我可以在每个页面上隐藏状态栏但是在一个地方有更简单的方法吗?
答案 0 :(得分:2)
进入App.xaml.cs文件和OnLaunched
添加
此
StatusBar statusBar = Windows.UI.ViewManagement.StatusBar.GetForCurrentView();
// Hide the status bar
await statusBar.HideAsync();
答案 1 :(得分:1)
您可以在OnLaunched
事件处理程序的App.xaml.cs中隐藏它。为了避免将async
添加到OnLaunched
方法,您可以使用Wait()
的{{1}}方法:
Task