Windows 11 [extra Quality] — Smooth Scroll List Boxes

In the tab, locate Smooth-scroll list boxes in the list.

If your "paper" interest is in the underlying animation engine, Microsoft provides documentation on Expression Animations . This allows you to parallax the scroll position or create custom sticky headers based on the scroll offset. smooth scroll list boxes windows 11

<!-- Windows 11 Smooth Scroll Pattern --> <ScrollViewer x:Name="MyScroller"> <ItemsRepeater x:Name="MyList" ItemsSource="x:Bind MyItems"> <ItemsRepeater.ItemTemplate> <DataTemplate x:DataType="model:MyItemType"> <TextBlock Text="x:Bind Name" /> </DataTemplate> </ItemsRepeater.ItemTemplate> </ItemsRepeater> </ScrollViewer> In the tab, locate Smooth-scroll list boxes in the list

Navigate to the tab and click Settings under the Performance section. In the tab

If you are looking for a deep dive into the architecture:

The classic LISTBOX does not support smooth scrolling natively.