Is there a posibility to scroll to a specific place in a ScrollViewer from your code behind?
So something like the Slider element you can change the value property...
Is there a posibility to scroll to a specific place in a ScrollViewer from your code behind?
So something like the Slider element you can change the value property...
You need the ScrollToHorizontalOffset and ScrollToVerticalOffset methods.
Annoyingly, there aren't corresponding (settable) properties, so you can't databind the scroll position, but these methods do at least let you set it from code.
In most cases if you're trying to show a specific control it's simpler to call BringIntoView on any FrameworkElement (Panel, Control, etc) contained in the ScrollViewer which will take care of all the size and offset calculations for you.