WPF Split View with two ScrollViewer

I'm currently developing a page with the option to view with explode. I will have two exactly the same scrollviewers where one is displayed upside down. My idea was to allow two users to sit opposite each other to view the same document.

I am currently declaring two ScrollViewers in a XAML file and rotate one of them. However, I would like scrollviewers to have the same meaning. Therefore, if user A scrolls his part, user B also falls into the same part.

How to implement this?

+3
source share
1 answer

ScrollChanged. VerticalOffset , . ScrollToVerticalOffset.

+1

All Articles