New to Telerik UI for .NET MAUI? Start a free 30-day trial
.NET MAUI MaskedEntry - Keyboard Type
Updated over 6 months ago
You can change the keyboard type of the MaskedEntry by setting the Keyboard(of type Microsoft.Maui.Keyboard) property. The available options are: Plain, Chat, Default, Email, Numeric, Telephone, Text, Uri.
Example with setting the Keyboard to Numeric on TextMaskedEntry
XAML
<telerik:RadTextMaskedEntry x:Name="maskedEntry"
Keyboard="Numeric"
Mask="00:00" />