Localization in Xamarin Numeric Entry (SfNumericTextBox)

23 Jul 20211 minute to read

The SfNumericTextBox value can be localized to any specific culture. It can also be specified by setting the Culture property with System.Globalization.CultureInfo object instance.

<numeric:SfNumericTextBox Value="12345"  x:Name="numericTextBox" FormatString="c"/>
numericTextBox.Culture = new System.Globalization.CultureInfo("fr-FR");

Display the culter applied value image

See also

How to change the culture of SfNumericTextBox

How to get the localized return key on the iOS keyboard in Xamarin.Forms numeric controls