.NET MAUI MaskedEntry - Keyboard Type
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
<telerik:RadTextMaskedEntry x:Name="maskedEntry"
Keyboard="Numeric"
Mask="00:00" />