Welcome to the .NET MAUI feedback portal. We’re happy you’re here! If you have feedback on how to improve the .NET MAUI, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
.NET MAUI SfNumericEntry control. This can be achieved by introducing a new property, e.g., NumericSystem or NumericBase, which defines the format in which the value is displayed and the allowed input characters.Eg:
<SfInput:SfNumericEntry Value="255" NumericSystem="Hex" /> // will show "FF", and allow the user to input caracters from '0' to '9' and 'A' to 'F'
<SfInput:SfNumericEntry Value="255" NumericSystem="Octal" /> // will show "377", and prevent de input of '8' and '9' char
<SfInput:SfNumericEntry Value="255" NumericSystem="Binary" /> // will show "11111111", and prevent the input of digits others than '0' or '1'