Hello all,
In the Telerik UI for .NET MAUI 14.0.0 release, the RadSegmentedControl was rebuilt from the ground up. The control keeps its name and core purpose—display a list of horizontally aligned, mutually exclusive options—but exposes a new API surface, extended styling options, and additional features such as full data binding, selection modes, item templates, size modes, and per-segment commands.
Migration article: https://www.telerik.com/maui-ui/documentation/controls/segmentedcontrol/migration
CornerRadius can be applied trough the ItemViewStyle property of the segmented control. The target type is RadSegmentedControlItemView:
<Style x:Key="SegmentItemView" TargetType="telerik:RadSegmentedControlItemView">
<Setter Property="CornerRadius" Value="4" />
<Setter Property="TextColor" Value="#8660C5" />
<Setter Property="SelectedTextColor" Value="White" />
<Setter Property="FontAttributes" Value="Bold" />
<Setter Property="Margin" Value="1, 0" />
</Style>
<telerik:RadSegmentedControl x:Name="segmentControl"
ItemViewStyle="{StaticResource SegmentItemView}" />Regards,
Didi
Progress Telerik