recently i had tried to make task-bar invisible in maximize mode but unfortunately nothing worked.
i had some research over MSDN and stack overflow and most of them said make window border equal to none and maximize window.but it didn't worked.
BTW: i am using Metro-window and it has a hide task-bar functionality by itself.but it didn't worked either.
Asked
Active
Viewed 9,354 times
4
1 Answers
7
My experience on Windows 8.1 is that setting WindowStyle="None" WindowState="Maximized"
(as most people say) is not enough.
To hide taskbar I had to set ResizeMode="NoResize"

tom.maruska
- 1,411
- 16
- 22
-
1Thanks for that tip, it did the trick but it was important to set it **before** setting the `WindowStyle` and `WindowState` (at least when doing it programatically). Hope this little info helps those struggeling^^ – DragonSkills99 Apr 21 '21 at 21:46
Title="Fullscreen" Height="406.225" Width="754" WindowStyle="None" ResizeMode="NoResize" WindowState="Maximized" IgnoreTaskbarOnMaximize="True" ShowCloseButton="False" ShowTitleBar="False" ShowInTaskbar="False"
– Dec 05 '12 at 20:20