There's a way to force c# NumericUpDown to accept both comma and dot, to separate decimal values?
I've customized a textbox to do it (practically replacing dots with commas), but I'm surprised that there isn't another way..
This question explains how to change the separator, but I would like to use both!
NumericUpDown control uses the culture of the operating system to use comma or dots as a decimal separator.
If you want to be able to handle both separators and consider them as a decimal separator (ie: not a thousand separator), you can use Validation or manual event treatment, for example:
private void numericUpDown1_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar.Equals('.') || e.KeyChar.Equals(','))
{
e.KeyChar = ((System.Globalization.CultureInfo)System.Globalization.CultureInfo.CurrentCulture).NumberFormat.NumberDecimalSeparator.ToCharArray()[0];
}
}
In this example you will replace every dot and comma by the NumericDecimalSeparator of the current culture
The solution provided by Nicolas R wouldn't work if you paste values into the NumericUpDown (via ClipBoard and Ctrl+V).
I suggest the following solution: The NumericUpDown Control has, like other Controls, a Text property. But, it is hidden from the designer and Intellisense. Using the Text property, you can write the ValueChanged event handler like this:
private void numericUpDown1_ValueChanged(object sender, EventArgs e)
{
numericUpDown1.Text = numericUpDown1.Text.Replace(',', '.');
}
See also: https://msdn.microsoft.com/en-us/library/cs40s7ds.aspx
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With