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

Migrating the Accordion from Xamarin.Forms to .NET MAUI

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

Namespaces Differences

When migrating the Accordion from Xamarin to .NET MAUI, consider the following differences in the namespaces:

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

API Differences

When migrating the Accordion from Xamarin to .NET MAUI, consider the following differences in the API:

Xamarin Accordion .NET MAUI Accordion
N/A CanExpandMultipleItems
N/A Items

See Also

In this article