Windows10 UWP 隐藏手机状态栏

if (Windows.Foundation.Metadata.ApiInformation.IsTypePresent(typeof(StatusBar).ToString()))
            {
                StatusBar statusBar = Windows.UI.ViewManagement.StatusBar.GetForCurrentView();
                await statusBar.HideAsync();
            }

  

posted on 2015-12-10 14:57  wlqsmiling  阅读(923)  评论(0编辑  收藏  举报

导航