1

I have a VirtualizingStackPanel with Horizontal orientation. I am looking for a way to make the ScrollViewer scroll to content rather than by pixel. I know that .NET 4.5 brought the ScrollUnit property, however I can't find it on WinRT. There's no ContentScroll too.

d0kt0r1
  • 305
  • 1
  • 3
  • 15

1 Answers1

0

ListViewBase has a ScrollIntoView method which is what you would use to scroll to items. You could simply scroll with that to any given item in your list control.

Filip Skakun
  • 31,624
  • 6
  • 74
  • 100