RadioButton

This page describes how to create radio buttons in MauiReactor

The .NET Multi-platform App UI (.NET MAUI) RadioButton is a type of button that allows users to select one option from a set. Each option is represented by one radio button, and you can only select one radio button in a group.

Official documentation: https://learn.microsoft.com/en-us/dotnet/maui/user-interface/controls/radiobutton MauiReactor sample app: https://github.com/adospace/mauireactor-samples/tree/main/Controls/RadioButtonTestApp

Group of radio buttons with string content

new VStack(spacing: 5)
{
    new RadioButton("Radio 1"),
    new RadioButton("Radio 2"),
    new RadioButton("Radio 3"),
    new RadioButton("Radio 4")
        .IsChecked(true)
},
Simple radio button group

Group of radio buttons with custom content

Radio buttons with custom content (iOS)

This is a sample control template for Android:

Using the above style:

Radio buttons with custom style

Bonus tip: Radio buttons for an Enum

Say you have an Enum like this:

This code enumerates its values and displays them in a button group:

Radio buttons for an enum type

Last updated

Was this helpful?