We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
Unfortunately, activation email could not send to your email. Please try again.
Syncfusion Feedback

Trusted by the world’s leading companies

Syncfusion Trusted Companies

Overview

The .NET MAUI Radio Button control is a selection control that allows users to select one option from a list of predefined choices.


States

A .NET MAUI Radio Button has two selection states: selected and unselected. To prevent the toggling of radio button values, the disable radio button option can be used.

.NET MAUI forms radio button with different states


Customize Radio Button color

The .NET MAUI Radio Button states’ colors are customizable.

.NET MAUI forms radio button with customized colors


Label formatting

Users can define the Radio Button caption text and format its font name, style, size, and color.

.NET MAUI forms radio button with formatted label


.NET MAUI Radio Button code example

Easily get started with the .NET MAUI Radio Button using a few simple lines of C# code example as demonstrated below. Also, explore our .NET MAUI RadioButton Example which shows you how to render and configure the RadioButton for .NET MAUI.

<syncfusion:SfRadioGroup x:Name="radioGroup">
<syncfusion:SfRadioButton x:Name="male" Text="Male" IsChecked="True"/>
<syncfusion:SfRadioButton x:Name="female" Text="Female"/>
</syncfusion:SfRadioGroup>
SfRadioGroup radioGroup = new SfRadioGroup();
SfRadioButton male = new SfRadioButton();
male.IsChecked = true;
male.Text = "Male";
SfRadioButton female = new SfRadioButton();
female.Text = "Female";
radioGroup.Children.Add(male);
radioGroup.Children.Add(female);

Our Customers Love Us

Having an excellent set of tools and a great support team, Syncfusion reduces customers’ development time.
Here are some of their experiences.

Rated by users across the globe

Syncfusion .NET MAUI Resources

Awards

Greatness—it’s one thing to say you have it, but it means more when others recognize it. Syncfusion is proud to hold the following industry awards.

Up arrow icon
Live Chat Icon For mobile