NumericUpDown seems to be only dealing with integers. How can I modify it (?), so I can use doubles as Value and Increment?
feedback
|
|
NumericUpDown works with decimal types, but is integer only on the compact framework. This is a limitation of the class on CF. There is, however, a CodeProject UserControl that provides an implementation for CF. | |||||||
feedback
|
|
There is a property called DecimalPlaces. Set it to something grater than 0 and it will allow you to work with decimals | |||||||||||||
feedback
|
|
I just use a textbox, then override the OnKeyPress event. This code has worked for me in the past, but is only good for groups that write 1234.56, not 1234,56.
| |||
|
feedback
|