When I use a numbericupdown object with thousandsseperator set to true it only updates the text to display the commas correctly when it loses focus. Is there a way to force it to refresh each time the value is changed?
feedback
|
|
You would need to do an event. As we know, the thounsandseperator is triggered by focus we can simply call it as we type.
So as the user type, we give the box the it focus back which is a hack to recall the thousandsseperator formatting. Note: Problems with hacks are wierd situations which calls for more hacks... e.g: Cursor sets back to the front of the text... you would need another hack to fix it. Experiment with the other events to find the one that fits your case. Edit: Btw, if you do want to go even further with this ...
| ||||
|
feedback
|
|
To format the text value in your control you'd need a call to ParseEditText() which is protected but can be accessed from a class which inherits NumericUpDown. The problem is after your call the cursor will move before the first character. In order to control the position of the cursor you need access to the SelectionStart property which NumericUpDown don't expose. NumericUpDown still has a field named upDownEdit of type UpDownEdit. The UpDownEdit class although internal inherits from TextBox and behave much like one. So a solution would be to inherit from NumericUpDown and use reflection to get/set the value of upDownEdit.SelectionStart. Here is something you can work on:
| |||
|
feedback
|