Reputation: 424
I have 3 listboxes and I want to scroll one meanwhile others also are scrolling. I can scroll by mousewheel and drag scrollbar.
Upvotes: 5
Views: 5069
Reputation: 25201
Have a look at this article. It shows how this can be done by using binding and RenderTransform
.
Another thing you might want to check is the ScrollViewer.ScrollChanged
event. You can possibly listen to this event and set the scrolling for your listboxes as necessary.
Upvotes: 1