How can I hide / minimize the navigation bar programmatically at the bottom of the Windows 10 application (platform for unified windows), which I write for phones?
You can access the StatusBar at the top with:. Windows.UI.ViewManagement.StatusBar.GetForCurrentView () HideAsync ();
If you want to hide both, you can use full-screen mode rather than hide the status bar, then the navigation bar will also be hidden.
Windows.UI.ViewManagement.ApplicationView.GetForCurrentView (). TryEnterFullScreenMode ()
Source: https://habr.com/ru/post/1241277/More articles:java - Algorithm for generating a random path in a 2d char array - javaApache Spark: How to convert Spark DataFrame to RDD with type RDD [(Type1, Type2, ...)]? - scalaGet the full parent hierarchy from a given child in Postgresql - sqlhow to access component tree in Angular 2 - angularWhy does subtracting a pointer in C give an integer? - cJava calculating past date from today goes to the future - javaHow to convert String to your resource identifier (Android Studio) - javaWorking with an array of objects - javascriptBest way to handle errors when closing async in Swift 2? - asynchronousThe tail of the most recent file is linuxAll Articles