I am developing Windows 10 Universal App using C#. My question is refers to a case when an user runs my application on PC/desktop.
I want my app to be full screen, this can by done by calling
Windows.UI.ViewManagement::TryEnterFullScreenMode()
Now we are in full screen. But when user swipes mouse pointer to lower edge of the screen Windows' Taskbar will appear and I don't want it to appear - what can I do?
I've tried setting FullScreenSystemOverlayMode
property of corresponding Windows.UI.ViewManagement
to FullScreenSystemOverlayMode
.
Minimal alongside with setting SuppressSystemOverlays
to true
.
Neither has helped, what can I do?