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

Migrating the Entry from Xamarin to .NET MAUI

Telerik .NET MAUI Entry control preserves the same API as the Xamarin.Forms Entry with a few changes and improvements listed below.

Migrating the Namespaces

ControlControl nameXAML NamespcaceC# Namespace
Xamarin EntryRadEntryxmlns:telerikInput="clr-namespace:Telerik.XamarinForms.Input;assembly=Telerik.XamarinForms.Input"using Telerik.XamarinForms.Input;
.NET MAUI EntryRadEntryxmlns:telerik="http://schemas.telerik.com/2022/xaml/maui"using Telerik.Maui.Controls;

Modifying the API

Xamarin Entry.NET MAUI Entry
WatermarkTextPlaceholder
WatermarkTextColorPlaceholderColor
-CharacterSpacing
-IsTextPredictionEnabled
-ReturnType
-ClearButtonVisibility
CompletedCommandReturnCommand
BorderStyle.BorderColorBorderBrush
BorderStyle.BorderThicknessBorderThickness
BorderStyle.CornerRadiusCornerRadius
-ClearButtonStyle
-VisualStates

For a complete guide on app migration to .NET MAUI, go to Migrating Xamarin to MAUI topic.

See Also