Lets say we have 0 displayed in value field of the control and i want that if the value is 0 - display string.Empty (i know that the type of value is decimal and there can be no string inserted instead of decimals in it, but still...May be there is some formatting possible there?).

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

Note: This is dependent on the current implementation of NumericUpDown.

What you need to do is create a new control that inherits from NumericUpDown such that:

public partial class SpecialNumericUpDown : NumericUpDown
{
    public SpecialNumericUpDown()
    {
        InitializeComponent();
    }

    protected override void UpdateEditText()
    {
        if (this.Value != 0)
        {
            base.UpdateEditText();
        }
        else
        {
            base.Controls[1].Text = "";
        }
    }
}
link|improve this answer
feedback

It seems that there is only very limited support for changing the formatting.

I have not tried this myself. But you could create a subclass and override the UpdateEditText method to support your custom format. Something like this:

protected override void UpdateEditText()
{
   this.Text = Value.ToString(); // Insert your formatting here
}
link|improve this answer
feedback
public partial class MyNumericUpDown : NumericUpDown
{
    public override string Text
    {
        get
        {
            if (base.Text.Length == 0)
            {
                return "0";
            }
            else
            {
                return base.Text;
            }
        }
        set
        {
            if (value.Equals("0"))
            {
                base.Text = "";
            }
            else
            {
                base.Text = value;
            }
        }
    }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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