Am making my own taskbar that will appear on top of other windows. how do I make it push other windows down such that when maximised they don't overlap my taskbar
Asked
Active
Viewed 1,132 times
1
-
Thats called an "AppBar", see http://stackoverflow.com/questions/75785/how-do-you-do-appbar-docking-to-screen-edge-like-winamp-in-wpf – Alex K. Aug 31 '11 at 10:03
-
You can move the Taskbar around. – H H Aug 31 '11 at 10:07
1 Answers
0
See this question. In short, don't use Window.Topmost, as this will put your window above all other windows, which is just rude! Instead, set the "Owner" property of the other windows to be the window that you appear on top.
-
He wants to change the maximized size of windows so they don't overlap, not control what window is on top. – Tim Rogers Aug 31 '11 at 10:03