Completed
Last Updated: 02 Nov 2018 15:05 by ADMIN
ADMIN
Vladimir Stoyanov
Created on: 23 Oct 2018 10:40
Category: NumericUpDown
Type: Bug Report
0
NumericUpDown: Incorrect behavior of Backspace and Delete keys when the NumberNegativePattern is different than the default one
As a workaround you can change the NumberNegativePattern to the default one like so:

System.Globalization.CultureInfo ci = (System.Globalization.CultureInfo)System.Threading.Thread.CurrentThread.CurrentCulture.Clone();

ci.NumberFormat.NumberNegativePattern = 1;

Thread.CurrentThread.CurrentCulture = ci;

Thread.CurrentThread.CurrentUICulture = ci;
1 comment
ADMIN
Vera
Posted on: 02 Nov 2018 15:05
The fix for this issue will be available with the next LIB (version 2018.3.1105) expected on Monday, November 5.