Moving a second window.
I'm trying to work out the best way to get a second window to move when I drag my first window.
I know how to use window.DragMove() but this only works on the window that has been clicked on.
I have tried using something like
window2.Left = this.Left + x;
window2.Top = this.Top + y;
in the mousemove event of window1 when it is being dragged but this is very slow and jerky.
Is there a better way to move a window's position?

