问题
I'm using the following code to make the status bar appear on top of content (and setting background opacity = 0).
var applicationView = Windows.UI.ViewManagement.ApplicationView.GetForCurrentView();
applicationView.SetDesiredBoundsMode(Windows.UI.ViewManagement.ApplicationViewBoundsMode.UseCoreWindow);
This has the adverse affect of also making the bottom app bar overlap the page content. Is there a way to make the status bar overlap content, but not also the bottom app bar?

来源:https://stackoverflow.com/questions/26088947/status-bar-and-bottom-app-bar-occlusion-wp-8-1