New to Telerik UI for .NET MAUI? Start a free 30-day trial
.NET MAUI Templated Rating
Updated over 6 months ago
The RadTemplatedRating component is designed for cases where is easier to provide a template (for example, an image) for the rating items instead of creating custom RadPathGeometry.
On top of the common Rating API, this component adds the following members:
ItemTemplate(DataTemplate)—Defines the template used in the rating item.SelectedItemTemplate(DataTemplate)—Specifies the template used in the selected rating item.
Set both the
ItemTemplateandSelectedItemTemplatetemplates.

The following example demonstrates how to define RadTemplatedRating in XAML:
xaml
<telerik:RadTemplatedRating AutomationId="templatedRating" ValueChanged="RadTemplatedRating_ValueChanged">
<telerik:RadTemplatedRating.ItemTemplate>
<DataTemplate>
<Image Source="unread.png" />
</DataTemplate>
</telerik:RadTemplatedRating.ItemTemplate>
<telerik:RadTemplatedRating.SelectedItemTemplate>
<DataTemplate>
<Image Source="success.png" />
</DataTemplate>
</telerik:RadTemplatedRating.SelectedItemTemplate>
</telerik:RadTemplatedRating>