Completed
Last Updated: 20 May 2026 11:27 by ADMIN
Release 14.0.0 (2026 Q2)
Aaron
Created on: 22 Feb 2023 12:00
Category: SegmentedControl
Type: Feature Request
1
SegmentedControl: Provide support for corner radius
Provide a way to set rounded corners on the outer buttons and to the complete segment control
1 comment
ADMIN
Didi
Posted on: 20 May 2026 11:27

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