Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to create a TextBox that only accepts numeric values, in a specific range. What is the best way to implement such TextBox?

I thought about deriving TextBox and to override the validation and coercion of the TextProperty. However, I am not sure how to do this, and I understand that deriving WPF control is generally not recommended.


Edit:
What I needed was a very basic textbox that filters out all key presses which are not digits. The easiest way to achieve it is to handle the TextBox.PreviewTextInput event:

private void textBox_PreviewTextInput(object sender, TextCompositionEventArgs e)
{
    int result;
    if (!validateStringAsNumber(e.Text,out result,false))
    {
        e.Handled = true;
    }
}

(validateStringAsNumber is my function that primarily use Int.TryParse)

Some of the suggested solutions are probably better, but for the simple functionality I needed this solution is the easiest and quickest to implement while sufficient for my needs.

share|improve this question
1  
Check my question on this topic here: stackoverflow.com/questions/5511/numeric-data-entry-in-wpf – Matt Hamilton Aug 4 '09 at 8:03

7 Answers

up vote 2 down vote accepted

Most implementations I have seen so far are using the PreviewTextInput event to implement the correct mask behavior. This one inherits from TextBox and this one uses attached properties. Both use .Net's MaskedTextProvider to provide the correct mask behaviour, but if you just want a simple 'numbers only' textbox you don't need this class.

share|improve this answer

The overall best why is to use the override method OnKeyPressed for the textbox like. Here is the code for the override using the static Char Method IsDigit.

if (!Char.IsDigit(e.KeyChar) && !Char.IsControl(e.KeyChar)) e.Handled = true;

That is all you really need to do.

share|improve this answer
The only problem with this is that it won't allow you to use the decimal point (.) – Jason Ebersey Aug 16 '11 at 20:15
TextBox only has KeyDown and PreviewKeyDown events which send parameter as KeyEventArgs . and this doesn't contain KeyChar property only Key property which returns one from Keys enum – Javidan Sep 28 '12 at 9:52
Also, what if someone wanted to paste a number from the clipboard? – Matt Becker Nov 16 '12 at 20:24

In my humble opinion, the best way to fulfill this requirement is using only OnTextChanged event because it can handle the digit from keystroke and also be able to handle Copy+Paste from clipboard too. I hope that my VB code shown below can throw some light on this.

Private Sub NumericBox_TextChanged(sender As Object, e As TextChangedEventArgs) Handles Me.TextChanged
  Dim Buffer As New StringBuilder
  Dim Index As Integer = Me.SelectionStart
  For Each C In Me.Text
    If Char.IsDigit(C) Then
      Buffer.Append(C)
    ElseIf Me.SelectionStart > Buffer.Length Then
      Index -= 1
    End If
  Next
  Me.Text = Buffer.ToString
  Me.SelectionStart = Index
End Sub
share|improve this answer

Whats wrong with the msdn binding validation sample? Code is here

share|improve this answer
private void txt_TextChanged(object sender, TextChangedEventArgs e)
{
    TextBox textBox = sender as TextBox;
    int iValue = -1;

    if (Int32.TryParse(textBox.Text, out iValue) == false)
    {
         TextChange textChange = e.Changes.ElementAt<TextChange>(0);
         int iAddedLength = textChange.AddedLength;
         int iOffset = textChange.Offset;

         textBox.Text = textBox.Text.Remove(iOffset, iAddedLength);
    }
}
share|improve this answer
1  
When I use the code above I retrieve error message: "Error 1 'System.Collections.Generic.ICollection<System.Windows.Controls.TextCha‌​nge>' does not contain a definition for 'ElementAt' and no extension method 'ElementAt' accepting a first argument of type 'System.Collections.Generic.ICollection<System.Windows.Controls.TextChange>' could be found (are you missing a using directive or an assembly reference?) NewProduct.xaml.cs 104 51 MediaStore" What reference is missing? – Legato May 30 '11 at 21:20
Same problem here... – gentlesea Oct 1 '12 at 10:42
@Legato probably different .net framework – stukselbax Dec 4 '12 at 8:23

There are several Numbers Only Textbox implementations out there.

share|improve this answer

In WPF the keycode values are different from the normal winforms e.keychar values,

In the PreviewKeyDown event of the textbox, add this code:

if (e.key<34) or (e.key>43) Then
 if (e.key<74) or (e.key > 83) Then
   if (e.key = 2 ) Then
       exit sub
   end if
   e.handled = True
 End if
End if

This will allow the User to only enter Numbers in the Numpad0 - Numpad9 section and the D0 - D9 and also the key.Back

Hope this Helps, cheers!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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