New to Telerik UI for .NET MAUIStart a free 30-day trial

Migrate from Xamarin.Forms DataGrid to .NET MAUI DataGrid

The Telerik UI for .NET MAUI DataGrid 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 DataGrid and .NET MAUI DataGrid.

Migrate the Namespaces

ControlControl nameC# NamespaceXAML Namespcace
Xamarin DataGridRadDataGridxmlns:telerikDataGrid="clr-namespace:Telerik.XamarinForms.DataGrid;assembly=Telerik.XamarinForms.DataGrid"using Telerik.XamarinForms.DataGrid;
.NET MAUI DataGridRadDataGridxmlns:telerik="http://schemas.telerik.com/2022/xaml/maui"using Telerik.Maui.Controls;

API Changes

Xamarin DataGrid.NET MAUI DataGrid
N/ARow Details
N/AAggregates
N/AFrozen Colums
N/AColumn Resizing
N/AColumn Footer
N/AColumn Reordering
N/AKeyboard Navigation
N/ADynamicObject
N/AExpandoObject
N/ABuilt-in Search Functionality

See Also