c# - Suppress System Overlays, Windows phone 8.1 (Silverlight) -


i wanted know how hide navigation-bar. , if possible specify in xaml code suppresssystemoverlay, systemtray : shell:systemtray.isvisible="false".

i cannot find description not on msdn, seems refer wp 8.1 build winrt, , application silverlight.

the answer no, sorry. 8.1 possible through code described in this post. however, executing hide code in constructor should give similar effect:

public mainpage() {    initializecomponent();    await windows.ui.viewmanagement.statusbar.getforcurrentview().hideasync();    windows.ui.viewmanagement.applicationview.getforcurrentview().suppresssystemoverlays = true; } 

Comments