New to Telerik UI for WinUIStart a free 30-day trial

Picker Control

Updated on Mar 26, 2026

The CollectionEditor suite provides a CollectionEditorPicker control which is a button that opens drop down menu containing CollectionEditor.

WinUI

The following example shows how to set up the RadCollectionEditorPicker component.

Creating the data model

C#
public class Employee
{
	public string FirstName { get; set; }
	public string LastName { get; set; }
	public double Salary { get; set; }
	public DateTime HireDate { get; set; }
	
	public override string ToString()
	{
	return this.FirstName + " " + this.LastName;
	}
}

Setting up the data

C#
this.collectionEditorPicker.Source = new BindableCollection<Employee>()
{ 
	new Employee() { FirstName = "John", LastName = "Doe", Salary = 10000, HireDate = DateTime.Today },
	new Employee() { FirstName = "John", LastName = "Doe Junior", Salary = 10000, HireDate = DateTime.Today },
	new Employee() { FirstName = "Jane", LastName = "Doe", Salary = 10000, HireDate = DateTime.Today },
};

Define the CollectionEditorPicker in XAML

XAML
<telerikControls:RadCollectionEditorPicker x:Name="collectionEditorPicker"/>

WinUI

See Also

In this article
See Also
Not finding the help you need?
Contact Support