New to Telerik UI for .NET MAUIStart a free 30-day trial

.NET MAUI TemplatedPicker Methods

Updated on Aug 11, 2026

The TemplatedPicker for .NET MAUI allows you to clear the selected value through its ClearSelection method.

1. Define the TemplatedPicker:

XAML
<VerticalStackLayout>
    <Button Clicked="OnClearSelectionClicked" Text="clear selection"/>
    <telerik:RadTemplatedPicker x:Name="picker">
        <telerik:RadTemplatedPicker.SelectorTemplate>
            <ControlTemplate>
                <telerik:RadCalendar SelectedDate="{TemplateBinding SelectedValue, Mode=TwoWay}"/>
            </ControlTemplate>
        </telerik:RadTemplatedPicker.SelectorTemplate>
    </telerik:RadTemplatedPicker>
</VerticalStackLayout>

2. Clear the selection inside the button click event:

C#
private void OnClearSelectionClicked(object sender, EventArgs e)
{
    this.picker.ClearSelection();
}

3. Add the following namespace:

XAML
xmlns:telerik="http://schemas.telerik.com/2022/xaml/maui"

See Also

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