New to Telerik UI for WinUI? Start a free 30-day trial
Getting Started with WinUI ListView
Updated on Mar 26, 2026
This help article shows how to create a RadListView from scratch using the RadListView related classes in the Telerik UI for WinUI.
Assembly References
In order to use RadListView in your projects, you have to add references to the following assembly:
Telerik.WinUI.Controls.dllTelerik.Licensing.Runtime.dll
Defining the Control
To use the RadListView control in XAML, define a namespace that points to the Telerik.UI.Xaml.Controls.Data namespace.
xmlns:telerikData="using:Telerik.UI.Xaml.Controls.Data"
Example 1: Adding RadListView in XAML
XAML
<telerikData:RadListView x:Name="listView" />
Then you can assign a collection of items to the ItemsSource of the control.
Example 2: Setting the ItemsSource
C#
public MainWindow()
{
this.InitializeComponent();
this.listView.ItemsSource = Enum.GetNames(typeof(DayOfWeek)).ToList();
}
Figure 1: RadListView with one selected and one hovered item
