I would like to access the scrollbar from my ScrollViewer.
I think it is hidden somewhere in the ScrollViewer template, do I have a way to access and get a link to it programmatically?
So, if I have
<ScrollViewer x:Name="myScrollViewer">
In the code behind which I would like to go:
ScrollBar scrollBar = myScrollViewer.GetScrollBar();
(obviously, I guess that would be harder than simple)
source share