I am working on a WPF application for Windows 10 and I'm trying to set the app in fullscreen and hide the taskbar. I used this code :
this.WindowStyle = WindowStyle.None;
this.WindowState = WindowState.Maximized;
This is working fine in desktop mode. But when switching to tablet mode the taskbar is still visible.
With this.ResizeMode = ResizeMode.NoResize;
, the problem is still there...