Is there a way to set this in Xaml? i.e. I have a slider and I want the slider to control the vertical offset of the scroll viewer.
For example, I can do this in a poor man's scroll viewer... but this doesn't scale all the time:
<GridView.RenderTransform>
<TranslateTransform Y="{Binding ElementName=c_slider, Path=Value}" />
</GridView.RenderTransform>
nagendra mishr