Add support for diferent numeric systems

Is there a chance to add support for some numeric systems? like hex, octal and/or binary. Could be a property like "NumericSystem" or "NumericBase".
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'

In addition, if possible, another property to allow "group" digits, like "CharGroup=2", so if u have a value of 65535 in 'Hex' mode, "FFFF" can be displayed as "FF FF". Tecnically could be compatible with CustomFormat property, this way can also do:
<SfInput:SfNumericEntry Value="255"  NumericSystem="Hex" CustomFormat  = "0000"/> // 00FF
<SfInput:SfNumericEntry Value="15"  NumericSystem="Binary" CustomFormat  = "D8"  /> // 00001111


1 Reply

VR Vallarasu Ravichandran Syncfusion Team November 5, 2025 09:49 AM UTC

Hi Abel Aegerter,

We have created a feature request based on your enquiry and added it to our request list. You can track its status or progress using the following link:

 

Feedback:  Muti Numeric Systems support in .NET MAUI SfNumericEntry in .NET MAUI | Feedback Portal

 

We plan to implement it in one of our upcoming releases, and we will notify you as soon as this feature is available. We appreciate your patience and understanding.

 

We encourage you to cast your vote for this feature, and if you have any additional suggestions or requirements, feel free to add them as a comment on the feedback portal.

 

Thank you for your understanding.

 

Regards,
Vallarasu R.


Loader.
Up arrow icon