Replies: 5 comments
-
@RBrid I would have expected this to work. Any ideas? |
Beta Was this translation helpful? Give feedback.
0 replies
-
@HppZ what properties are you setting from your custom scrollviewer style? |
Beta Was this translation helpful? Give feedback.
0 replies
-
This works for me:
|
Beta Was this translation helpful? Give feedback.
0 replies
-
<Setter Property="HorizontalScrollMode" Value="Auto"></Setter>
<Setter Property="HorizontalScrollBarVisibility" Value="Hidden"></Setter>
<Setter Property="VerticalScrollMode" Value="Disabled"></Setter>
<Setter Property="VerticalScrollBarVisibility" Value="Disabled"></Setter>
<ListView.ItemsPanel>
<ItemsPanelTemplate>
<ItemsStackPanel Orientation="Horizontal"></ItemsStackPanel>
</ItemsPanelTemplate>
</ListView.ItemsPanel> |
Beta Was this translation helpful? Give feedback.
0 replies
-
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
1, can't use Page level implicit style because there exists several ScrollViewer with different styles.
2, tried this but not work:

Beta Was this translation helpful? Give feedback.
All reactions