New to Telerik UI for WPF? Start a free 30-day trial
Listbox Scroll Per Pixel
Updated on Sep 15, 2025
Environment
| Product Version | 2020.2.617 |
| Product | RadListBox for WPF |
Description
The default behavior of the RadListBox control, when scrolling, is to scroll per item. This article shows how to scroll the content of the ListBox control per pixel.
Solution
Set the ScrollViewer.CanContentScroll attached property, onto the RadListBox control, to False. This will allow the user to scroll per pixels rather than per items.
XAML
<telerik:RadListBox ScrollViewer.CanContentScroll="False"/>