My Windows Phone 8.1 apps bottom part gets under the software navigation keys. I use ApplicationViewBoundsMode.UseCoreWindow
to make the page stay over the software navigation keys. But as a result the content of the page gets under the status bar and the status bar becomes transparent. Is there any way to keep the status bar normal and also make the page from going under the software navigation keys?
相关问题
- WP8.1 How to cancel a Background Audio Task in C#
- windows phone 8.1 music library get current media
- Listview applies a check to other listview items h
- Programmatically read target platform during run t
- Replacing or recreating a file in Windows 8 RT kee
相关文章
- Windows 8.1 How to fix this obsolete code?
- Show flyout using BottomAppBar
- Exception when reading text from the file using Fi
- Building Windows 8 Metro App on Windows 7 with Vis
- Prevent the listview from scrolling to its top pos
- How to get the text of textbox to textblock in ano
- Cordova Windows Phone 8.1 with angularjs - An app
- SQLite secure Windows Phone 8.1
ApplicationViewBoundsMode.UseCoreWindow
can indeed help to display content under the navigation key. But if you want to avoid the side effect that your top status bar becomes transparent, you could tryApplicationView.GetForCurrentView().VisibleBoundsChanged
and change the margin of your page. If you have a look, The top margin is set to-40
to go under the status bar you could just put that to0
and set theApplicationView
as mentioned above that'll fix it.You might refer to this blog written by @Joost Van where he demonstrates the detailed steps and code as well as the screenshot. And it works with your Windows Phone 8.1 project.