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!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

We propose adding support for multiple numeric systems (such as hexadecimal, octal, and binary) to the .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'