Folks, I want two WPF windows to stick to each other so that as one is moved the other moves with it giving the illusion that it's glued to the right hand side. In my picture you see the first window on the left and the child second window on its right. Notice how there is a rounding problem and they overlap. I'm doing this childish logic in the first window:
private void PictureEditor_LocationChanged(object sender, EventArgs e)
{
preview.Left = Left + Width;
preview.Top = Top;
}
There is some fudge factor for the window and height that I'm not aware.
Anyone know?
<<image001.png>>
_______________________________________________ ozwpf mailing list [email protected] http://prdlxvm0001.codify.net/mailman/listinfo/ozwpf
