09-06-2013 03:32 PM
How to synchronize the scroll bars of 2-D picture control?
Image1 scroll bar = Image 2 scroll bar (or vice versa)
Solved! Go to Solution.
09-06-2013 03:59 PM
Use a mouse down or mouse move event on each of the images to detect when someone might be moving the scrollbars.
Read the Origin property of one image and write it to the Original property node of the other image.
09-07-2013 07:14 AM
Alternatively you can place free scrollbars and use their value change-event to sync and trigger the others.
/Y
09-09-2013 09:51 AM
I was searching for non available property (something like ScrollPosition). Mouse move works great, Thank you!