Scrolling through multiple lists at once?

I have 3 lists and I want to scroll one, meanwhile the others also scroll. I can scroll the mouse wheel and drag the scroll bar.

+5
source share
2 answers
+4
source

Check out this article . It shows how this can be done using the and binding RenderTransform.

Another thing you can check is the ScrollViewer.ScrollChangedevent . You can listen to this event and scroll through your lists if necessary.

+1
source

All Articles