ioWint
ioWint

Reputation: 1629

Window without WindowStyle and maximized window state hides the taskbar

WPF application with WindowState Maximized and WindowStyle None hides the taskbar. Since my application runs on a Customer Wrapper Application which has its own taskbar and Windows Start button equivalent, i need to ensure that my application doesnt hide the taskbar in maximized mode. I believe its a behavior different from what i have seen in Winforms!

Upvotes: 3

Views: 2324

Answers (1)

Agustin Meriles
Agustin Meriles

Reputation: 4854

I've faced the same issue. The best approach is to handle this with API Calls. This code worked great for me.

Taskbar with Window Maximized and WindowState to None in WPF

Upvotes: 2

Related Questions