Created
July 20, 2016 23:11
-
-
Save seksenov/fe2f9daeea388e5bcaaae51d78c6f548 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var appView = Windows.UI.ViewManagement.ApplicationView.getForCurrentView(); | |
// toggle the desiredBoundsMode between useVisible (10% black border) and useCoreWindow (entire screen) | |
appView.setDesiredBoundsMode(appView.desiredBoundsMode === Windows.UI.ViewManagement.ApplicationViewBoundsMode.useCoreWindow ? | |
Windows.UI.ViewManagement.ApplicationViewBoundsMode.useVisible : | |
Windows.UI.ViewManagement.ApplicationViewBoundsMode.useCoreWindow); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment