Having trouble getting help?
Contact Support
Contact Support
Show Password Character in .NET MAUI Masked Entry (SfMaskedEntry)
Password Char
The SfMaskedEntry control supports to work as a password text box when setting a character to the PasswordChar property.
<editors:SfMaskedEntry x:Name="maskedEntry"
WidthRequest="200"
Mask="\w+"
MaskType="RegEx"
PasswordChar="*"/>
maskedEntry.PasswordChar = '*';