We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As title says, when swapping out a ScrollViewer for a ScrollView, the scroll speed is extremely noticeable.
ScrollViewer
ScrollView
Create a ScrollViewer and ScrollView side-by-side and compare them.
<Grid Margin="10" ColumnSpacing="10"> <Grid.ColumnDefinitions> <ColumnDefinition Width="*" /> <ColumnDefinition Width="*" /> </Grid.ColumnDefinitions> <ScrollView Grid.Column="0"> <ItemsRepeater x:Name="ItemsControl_ScrollView"> <ItemsRepeater.ItemTemplate> <DataTemplate> <TextBlock Margin="10" Text="{Binding}" /> </DataTemplate> </ItemsRepeater.ItemTemplate> </ItemsRepeater> </ScrollView> <ScrollViewer Grid.Column="1"> <ItemsRepeater x:Name="ItemsControl_ScrollViewer"> <ItemsRepeater.ItemTemplate> <DataTemplate> <TextBlock Margin="10" Text="{Binding}" /> </DataTemplate> </ItemsRepeater.ItemTemplate> </ItemsRepeater> </ScrollViewer> </Grid>
Either scroll at the same speed or have a ScrollRatio exposed on the new ScrollView control
ScrollRatio
WinUI 3 - Windows App SDK 1.4.5: 1.4.240411001
Windows 11 (22H2): Build 22621
Īs it expected that ScrollView is the eventual replacement for ScrollViewer?
The text was updated successfully, but these errors were encountered:
Hi I'm an AI powered bot that finds similar issues based off the issue title.
Please view the issues below to see if they solve your problem, and if the issue describes your problem please consider closing this one. Thank you!
Note: You can give me feedback by thumbs upping or thumbs downing this comment.
Sorry, something went wrong.
I have to be honest, I prefer the speed of the newer control.
No branches or pull requests
Describe the bug
As title says, when swapping out a
ScrollViewer
for aScrollView
, the scroll speed is extremely noticeable.Steps to reproduce the bug
Create a
ScrollViewer
andScrollView
side-by-side and compare them.Expected behavior
Either scroll at the same speed or have a
ScrollRatio
exposed on the newScrollView
controlScreenshots
Recording.2024-02-28.104903.mp4
NuGet package version
WinUI 3 - Windows App SDK 1.4.5: 1.4.240411001
Windows version
Windows 11 (22H2): Build 22621
Additional context
Īs it expected that ScrollView is the eventual replacement for ScrollViewer?
The text was updated successfully, but these errors were encountered: