2019-02-28 12:28:03 +03:00
---
title: SegmentedControl with rounded corners
description: Is it possible to set rounded corners on the outer buttons on Android and UWP like seen on iOS?
type: how-to
page_title: Set corner radius on outer buttons of RadSegmented on Android and UWP
slug: segmented-rounded-corners
position:
2019-08-16 15:45:56 +03:00
tags: segmented, rounded, corner, radius, buttons, Android, UWP, iOS, Xamarin, XamarinForms
2019-02-28 12:28:03 +03:00
ticketid: 1362457
res_type: kb
---
## Environment
< table >
< tr >
< td > Product Version< / td >
< td > 2018.3 1109.1< / td >
< / tr >
< tr >
< td > Product< / td >
< td > SegmentedControl for Xamarin< / td >
< / tr >
< / table >
## Description
2019-08-06 15:28:59 +03:00
2019-02-28 12:28:03 +03:00
Is it possible to set rounded corners on the outer buttons on Android and UWP like seen on iOS?
## Solution
2019-08-06 15:28:59 +03:00
2019-02-28 12:28:03 +03:00
RadSegmentedControl does not provide such an option itself, however, you could achieve it using our [RadBorder control ](https://docs.telerik.com/devtools/xamarin/controls/border/border-overview ). All you need to do is to wrap SegmentedControl inside Border and set a few color properties.
Here is a quick example:
```XAML
< telerikPrimitives:RadBorder BorderColor = "#4488F6" CornerRadius = "5" VerticalOptions = "Start" >
< telerikInput:RadSegmentedControl x:Name = "segmentControl"
HeightRequest="60"
VerticalOptions="Start"
SelectedSegmentBackgroundColor="#4488F6">
< telerikInput:RadSegmentedControl.ItemsSource >
< x:Array Type = "{x:Type x:String}" >
< x:String > Popular< / x:String >
< x:String > Library< / x:String >
< x:String > Playlists< / x:String >
< x:String > Friends< / x:String >
< / x:Array >
< / telerikInput:RadSegmentedControl.ItemsSource >
< / telerikInput:RadSegmentedControl >
< / telerikPrimitives:RadBorder >
```
Here is the result on different platforms:
![SegmentedControl with rounded corners ](images/segmented-rounded-corners.png )