Windows Phone 8.1 隐藏状态栏(系统托盘)
Windwos Phone 8.1 Hidden Status Bar(System Tray)
我想添加这个 2 次拉动状态栏(图片的中上部分)而不是普通的状态栏。我该怎么做?谢谢
您可以使用 StatusBar
API to hide the system tray, and the ApplicationView
API 来获取操作中心的双击行为。请注意,这还将在所有具有软件绘制方向盘的设备上隐藏 "steering wheel"(返回/开始/搜索)除了 FWVGA 设备:
var statusbar = StatusBar.GetForCurrentView();
statusbar.HideAsync();
var view = ApplicationView.GetForCurrentView();
view.SuppressSystemOverlays = true;
我想添加这个 2 次拉动状态栏(图片的中上部分)而不是普通的状态栏。我该怎么做?谢谢
您可以使用 StatusBar
API to hide the system tray, and the ApplicationView
API 来获取操作中心的双击行为。请注意,这还将在所有具有软件绘制方向盘的设备上隐藏 "steering wheel"(返回/开始/搜索)除了 FWVGA 设备:
var statusbar = StatusBar.GetForCurrentView();
statusbar.HideAsync();
var view = ApplicationView.GetForCurrentView();
view.SuppressSystemOverlays = true;