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.

link|improve this question

what about a label next to the control? – DarkSquirrel42 May 7 '11 at 13:56
Well thats possible but I want to have it inside the control itself. – Sean87 May 7 '11 at 13:57
You could try position a label over the control, otherwise I cannot think of a property to append a string to the end of a num-up-down. – lpd May 7 '11 at 14:03
Definitely don't try to position a label over the control. This is going to be difficult to get right, and be a perpetual thorn in your side. A label to the side of the control (on the form itself) is usually a good enough solution. If you need bigger guns, see my answer below. – Cody Gray May 7 '11 at 14:14
feedback

1 Answer

up vote 5 down vote accepted

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 NumericUpDown class and overrides the UpdateEditText method to format the number accordingly.

For example, you might have the following class definition:

public class NumericUpDownEx : NumericUpDown
{
    public NumericUpDownEx()
    {
    }

    protected override void UpdateEditText()
    {
        // Append the units to the end of the numeric value
        this.Text = this.Value + " uA";
    }
}

Or, for a more complete implementation, see this sample project: NumericUpDown with unit measure

link|improve this answer
thanks man! – Sean87 May 7 '11 at 14:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.