Getting Started with .NET MAUI CheckBox

13 Nov 202414 minutes to read

This section guides you through setting up and configuring a CheckBox in your .NET MAUI application. Follow the steps below to add a basic CheckBox to your project.

To quickly get started with the .NET MAUI CheckBox, watch this video.

Prerequisites

Before proceeding, ensure the following are set up:

  1. Install .NET 8 SDK or later is installed.
  2. Set up a .NET MAUI environment with Visual Studio 2022 (v17.3 or later) or Visual Studio Code. For Visual Studio Code users, ensure that the .NET MAUI workload is installed and configured as described here.

Step 1: Create a New MAUI Project

Visual Studio

  1. Go to File > New > Project and choose the .NET MAUI App template.
  2. Name the project and choose a location. Then, click Next.
  3. Select the .NET framework version and click Create.

Visual Studio Code

  1. Open the command palette by pressing Ctrl+Shift+P and type .NET:New Project and enter.
  2. Choose the .NET MAUI App template.
  3. Select the project location, type the project name and press Enter.
  4. Then choose Create project.

Step 2: Install the Syncfusion MAUI Buttons NuGet Package

  1. In Solution Explorer, right-click the project and choose Manage NuGet Packages.
  2. Search for Syncfusion.Maui.Buttons and install the latest version.
  3. Ensure the necessary dependencies are installed correctly, and the project is restored.

Step 3: Register the handler

Syncfusion.Maui.Core is a dependent package for all Syncfusion controls of .NET MAUI. In the MauiProgram.cs file, register the handler for Syncfusion core.

  • C#
  • using Microsoft.Maui;
    using Microsoft.Maui.Hosting;
    using Microsoft.Maui.Controls.Compatibility;
    using Microsoft.Maui.Controls.Hosting;
    using Microsoft.Maui.Controls.Xaml;
    using Syncfusion.Maui.Core.Hosting;
    
    namespace CheckBoxGettingStarted
    {
        public static class MauiProgram
        {
            public static MauiApp CreateMauiApp()
            {
                var builder = MauiApp.CreateBuilder();
                builder
                .UseMauiApp<App>()
                .ConfigureSyncfusionCore()
                .ConfigureFonts(fonts =>
                {
                    fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
                });
    
                return builder.Build();
            }      
        }
    }

    Step 4: Add a Basic SfCheckBox

    1. To initialize the control, import the Buttons namespace into your code.
    2. Initialize SfCheckBox.
    <ContentPage
        . . .    
        xmlns:buttons="clr-namespace:Syncfusion.Maui.Buttons;assembly=Syncfusion.Maui.Buttons">
       <buttons:SfCheckBox x:Name="checkBox"/>
    </ContentPage>
    using Syncfusion.Maui.Buttons;
        namespace CheckBoxGettingStarted
        {
            public partial class MainPage : ContentPage
            {
                public MainPage()
                {
                    InitializeComponent();           
                    SfCheckBox checkBox = new SfCheckBox();
                    this.Content = checkBox;
                }
            }   
        }

    Step 5: Set the CheckBox caption

    You can set the caption of the CheckBox using the Text property.This caption typically describes the meaning of the check box and is displayed next to the check box.

    <buttons:SfCheckBox x:Name="checkBox" IsChecked="True" Text="CheckBox"/>
    SfCheckBox checkBox = new SfCheckBox();
        checkBox.IsChecked = true;
        checkBox.Text = "CheckBox";
        this.Content = checkBox;

    .NET MAUI CheckBox

    Change the check box state

    The three visual states of SfCheckBox are:

    • Checked
    • Unchecked
    • Indeterminate

    .NET MAUI CheckBox

    You can change the state of the check box using the IsChecked SfCheckBox. In the checked state, a tick mark is added to the visualization of the check box.

    State Property Value
    checked IsChecked true
    unchecked IsChecked false
    indeterminate IsChecked null

    NOTE

    For the check box, to report the indeterminate state, set the IsThreeState property to true.

    The check box can be used as a single or as a group. A single check box mostly used for a binary yes/no choice, such as “Remember me?”, login scenario, or a terms of service agreement.

    <buttons:SfCheckBox x:Name="checkBox" Text="I agree to the terms of services for this site" IsChecked="True"/>
    SfCheckBox checkBox = new SfCheckBox();
        checkBox.Text = "I agree to the terms of services for this site";
        checkBox.IsChecked = true;
        this.Content = checkBox;

    .NET MAUI CheckBox

    Multiple checkboxes can be used as a group for multi-select scenarios in which a user selects one or more items from the choices that are not mutually exclusive.

    <StackLayout Padding="20">
            <Label x:Name="label" Text="Pizza Toppings" Margin="0,10"/>
            <buttons:SfCheckBox x:Name="pepperoni" Text="Pepperoni"/>
            <buttons:SfCheckBox x:Name="beef" Text="Beef" IsChecked="True"/>
            <buttons:SfCheckBox x:Name="mushroom" Text="Mushrooms"/>
            <buttons:SfCheckBox x:Name="onion" Text="Onions" IsChecked="True"/>
        </StackLayout>
    StackLayout stackLayout = new StackLayout() { Padding = 20 };
            Label label = new Label();
            label.Text = "Pizza Toppings";
            label.Margin = new Thickness(0,10);
            SfCheckBox pepperoni = new SfCheckBox();
            pepperoni.Text = "Pepperoni";
            SfCheckBox beef = new SfCheckBox();
            beef.Text = "Beef";
            beef.IsChecked = true;
            SfCheckBox mushroom = new SfCheckBox();
            mushroom.Text = "Mushrooms";
            SfCheckBox onion = new SfCheckBox();
            onion.Text = "Pepperoni";
            onion.IsChecked = true;
            stackLayout.Children.Add(label);
            stackLayout.Children.Add(pepperoni);
            stackLayout.Children.Add(beef);
            stackLayout.Children.Add(mushroom);
            stackLayout.Children.Add(onion);
            this.Content = stackLayout;

    .NET MAUI CheckBox

    Intermediate

    The SfCheckBox allows an Intermediate state in addition to the checked and unchecked state. The Intermediate state of the check box is enabled by setting the IsThreeState property of the control to True.

    NOTE

    When the IsThreeState property is set to False and IsChecked property is set to null then the check box will be in unchecked state.

    The Intermediate state is used when a group of sub-choices has both checked and unchecked states. In the following example, the “Select all” checkbox has the IsThreeState property set to true. The “Select all” checkbox is checked if all child elements are checked, unchecked if all the child elements are unchecked, and Intermediate otherwise.

    <StackLayout Padding="20">
            <Label x:Name="label" Margin="10" Text="Pizza Toppings"/>
            <buttons:SfCheckBox x:Name="selectAll" Text="Select All" IsThreeState="True" StateChanged="SelectAll_StateChanged"/>
            <buttons:SfCheckBox x:Name="pepperoni" Text="Pepperoni" StateChanged="CheckBox_StateChanged" Margin="30,0"/>
            <buttons:SfCheckBox x:Name="beef" Text="Beef" IsChecked="True" StateChanged="CheckBox_StateChanged" Margin="30,0"/>
            <buttons:SfCheckBox x:Name="mushroom" Text="Mushrooms" StateChanged="CheckBox_StateChanged" Margin="30,0"/>
            <buttons:SfCheckBox x:Name="onion" Text="Onions" IsChecked="True" StateChanged="CheckBox_StateChanged" Margin="30,0"/>
        </StackLayout>
    StackLayout stackLayout = new StackLayout() { Padding = 20 };
        SfCheckBox selectAll, pepperoni, beef, mushroom, onion;
        Label label = new Label();
        label.Text = "Pizza Toppings";
        label.Margin = new Thickness(10);
        selectAll = new SfCheckBox();
        selectAll.StateChanged += SelectAll_StateChanged;
        selectAll.Text = "Select All";   
        selectAll.IsThreeState = true;
        pepperoni = new SfCheckBox();
        pepperoni.StateChanged += CheckBox_StateChanged;
        pepperoni.Text = "Pepperoni";
        pepperoni.Margin = new Thickness(30, 0);
        beef = new SfCheckBox();
        beef.StateChanged += CheckBox_StateChanged;
        beef.Text = "Beef";
        beef.IsChecked = true;
        beef.Margin = new Thickness(30, 0);
        mushroom = new SfCheckBox();
        mushroom.StateChanged += CheckBox_StateChanged;
        mushroom.Text = "Mushrooms";
        mushroom.Margin = new Thickness(30, 0);
        onion = new SfCheckBox();
        onion.StateChanged += CheckBox_StateChanged;
        onion.Text = "Onions";
        onion.Margin = new Thickness(30, 0);
        onion.IsChecked = true;
        stackLayout.Children.Add(label);
        stackLayout.Children.Add(selectAll);
        stackLayout.Children.Add(pepperoni);
        stackLayout.Children.Add(beef);
        stackLayout.Children.Add(mushroom);
        stackLayout.Children.Add(onion);
        this.Content = stackLayout;
    bool skip = false;
        private void SelectAll_StateChanged(object sender, Syncfusion.Maui.Buttons.StateChangedEventArgs e)
        {
            if (!skip)
            {
               skip = true;
               pepperoni.IsChecked = beef.IsChecked = mushroom.IsChecked = onion.IsChecked = e.IsChecked;
               skip = false;
            }
        }
    
        private void CheckBox_StateChanged(object sender, Syncfusion.Maui.Buttons.StateChangedEventArgs e)
        {
            if (!skip)
            {
               skip = true;
               if (pepperoni.IsChecked.Value && beef.IsChecked.Value && mushroom.IsChecked.Value && onion.IsChecked.Value)
                   selectAll.IsChecked = true;
               else if (!pepperoni.IsChecked.Value && !beef.IsChecked.Value && !mushroom.IsChecked.Value && !onion.IsChecked.Value)
    	           selectAll.IsChecked = false;
               else
                   selectAll.IsChecked = null;
               skip = false;
            }
        }

    .NET MAUI CheckBox

    .NET MAUI CheckBox

    You can find the complete getting started sample of the .NET MAUI CheckBox from this link.

    See also

    How to achieve intermediate state in .NET MAUI CheckBox using MVVM?

    How to set intermediate state in the .NET MAUI CheckBox?