I was trying to overlap two windows one over another to overcome airspace issue in my WPF application. I need the two windows to move together and resize together and require all animations to be as it is (I mean the window restore, maximize and minimize animations).
I was able to move and resize the window together but since I use WS_EX_NOACTIVATE
my background window is not minimized on to taskbar, it goes to the bottom left corner of the Desktop.
Here is a sample screenshot:
Before minimize, the window looks like :
After minimize the window looks like :
Since the window gets minimized to desktop instead of taskbar I decided to change the position to which window is minimized to, if I could minimize both window to same coordinates then the animation will be smooth ,once minimize is complete I will hide the background window.
Is there any way to set the point to which window is minimized to. Some apps like Rocket Dock was able to do it, so it is possible, but how can I do it.
Note : The blur is drawn into the background Window