Maximizing a WPF Window With WindowState=None
July 11th, 2009
2 comments
When you get set a WPF window’s WindowStyle to None, the window will cover up the task bar when you set its WindowState to Maximized. I’ve seen various approaches to handling this through:
Overriding the WindowProc function and handling the WM_GETMINMAXINFO message
Using the SystemParameters for the primary screen
Another approach that seems to work quite well is [...]
