New to Telerik UI for .NET MAUI? Start a free 30-day trial

Migrating the CheckBox from Xamarin to .NET MAUI

The Telerik UI for .NET MAUI CheckBox preserves the same API as its Xamarin counterpart except for the configuration options listed in this article.

The tables in the following sections list any differences between the APIs of the Xamarin.Forms CheckBox and .NET MAUI CheckBox.

Migrating the Namespaces

Control Control name XAML Namespcace C# Namespace
Xamarin CheckBox RadCheckBox xmlns:telerikPrimitives="clr-namespace:Telerik.XamarinForms.Primitives;assembly=Telerik.XamarinForms.Primitives" using Telerik.XamarinForms.Primitives;
.NET MAUI CheckBox RadCheckBox xmlns:telerik="http://schemas.telerik.com/2022/xaml/maui" using Telerik.Maui.Controls;

Modifying the API

Xamarin CheckBox .NET MAUI CheckBox
N/A CornerRadius
CheckBoxUserCommand N/A

Review the Implementing the CheckBoxUserCommand Behavior When Migrating from Xamarin CheckBox to MAUI CheckBox how-to article for more details how to define a command when the Telerik .NET MAUI CheckBox state changes.

See Also

In this article