Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ScrollViewer Horizontal mouse wheel scrolling

I'm trying to find a way to scroll a horizontal ScrollViewer with the mouse wheel in WimRT. I know it is easy to achieve in WPF, but no such workarounds seem to be working in WinRT. Is there a way to do it?

Thank you

like image 226
Martin Zikmund Avatar asked May 26 '26 13:05

Martin Zikmund


1 Answers

From what I've done so far you should just be able to set the ScollViewer's style to

Style="{StaticResource HorizontalScrollViewerStyle}"

Which is defined in StandardStyles.xaml

like image 118
user1449496 Avatar answered May 30 '26 16:05

user1449496