New to Telerik UI for WPF? Download free 30-day trial

Listbox Scroll Per Pixel

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.

<telerik:RadListBox ScrollViewer.CanContentScroll="False"/> 
In this article