Page 1 of 1

WP - Remove Notification Bar

Posted: Tue Jul 05, 2016 1:32 pm
by CodenStuff
The following code will "hide" the Windows Phone notification bar so your app can have full use of the screen.
Code: Select all
Private Async Sub HideBar()
        Await Windows.UI.ViewManagement.StatusBar.GetForCurrentView().HideAsync()
    End Sub
For best results use this in the app initialization code of the "App.xaml" file.