Is it possible in WinForms to show a text inside a NumericUpDown control? For example I want to show the value in my numericupdown control is micro ampers so it should be like "1 uA".
Thanks.
|
Is it possible in WinForms to show a text inside a NumericUpDown control? For example I want to show the value in my numericupdown control is micro ampers so it should be like "1 uA". Thanks.
| |||||||||
feedback
|
|
There's no such functionality built into the standard control. However, it's fairly easy added by creating a custom control that inherits from the For example, you might have the following class definition:
Or, for a more complete implementation, see this sample project: NumericUpDown with unit measure | |||
|
feedback
|