I can do element-to-element binding in WPF: For example, I've got a window that has a slider control and a textbox, and the textbox dynamically displays the Value property of the slider as the user moves the slider.
But how do i do this across seperate windows (in the same project, same namespace) ?
The reason is that my main application window containing the textbox has a menu option that will open an 'options' window containing the slider control.
Thanks.