Do you want to display or show the status bar that was previously hidden from your Windows Phone 8.1 Windows runtime apps ? . Below is a code snippet that shows how to do it.
How to Show the Status Bar in Windows Phone 8.1 Windows Runtime Apps ?
Windows.UI.ViewManagement.StatusBar StatusBar = Windows.UI.ViewManagement.StatusBar.GetForCurrentView(); await StatusBar.ShowAsync();
The post How to Show the Status Bar in Windows Phone 8.1 Windows Runtime Apps ? appeared first on TechBlog.