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

I'm looking to accept digits and the decimal point, but no sign.

I've looked at samples using the NumericUpDown control for WinForms, and this sample of a NumericUpDown custom control from Microsoft. But so far it seems like NumericUpDown (supported by WPF or not) is not going to provide the functionality that I want. The way my app is designed, nobody in their right mind is going to want to mess with the arrows. They don't make any practical sense, in the context of my app.

So I'm looking for a simple way to make a standard WPF TextBox accept only the characters that I want. Is this possible? Is it practical?

Thanks, SO!

share|improve this question

9 Answers

up vote 10 down vote accepted

Add in a VALIDATION RULE that when the text changes checks to determine if the data is numeric, and if it is, allows processing to continue, and if it is not, prompts the user that only numeric data is accepted in that field.

Read more here: http://www.codeproject.com/KB/WPF/wpfvalidation.aspx

share|improve this answer

Add a preview text input event. Like so: <TextBox PreviewTextInput="PreviewTextInput" />.

Then inside that set the e.Handled if the text isn't allowed. e.Handled = !IsTextAllowed(e.Text);

I use a simple regex in IsTextAllowed to see if I should allow what they've typed. In my case I only want to allow numbers, dots and dashes.

private static bool IsTextAllowed(string text)
{
    Regex regex = new Regex("[^0-9.-]+"); //regex that matches disallowed text
    return !regex.IsMatch(text);
}

If you want to prevent pasting of incorrect data hook up the DataObject.Pasting event DataObject.Pasting="TextBoxPasting" as shown here (code excerpted):

// Use the DataObject.Pasting Handler 
private void TextBoxPasting(object sender, DataObjectPastingEventArgs e)
{
    if (e.DataObject.GetDataPresent(typeof(String)))
    {
        String text = (String)e.DataObject.GetData(typeof(String));
        if (!IsTextAllowed(text))
        {
            e.CancelCommand();
        }
    }
    else
    {
        e.CancelCommand();
    }
}
share|improve this answer
Thanks its works for me... – Pritesh Jul 30 '11 at 8:27
1  
Your regex doesn't allow scientific notation (1e5) if that is important. – Ron Warholic Aug 12 '11 at 17:32
Note that this answer only checks what you type, so you could enter 3-.3 – David Sykes Mar 15 at 11:56

The Extented WPF Toolkit has one: NumericUpDown enter image description here

share|improve this answer
I've tried this control but it gives problems when using the spinner with UpdateSourceTrigger=PropertyChanged and is in general difficult for the user to enter scientific notation. – Menno Squared Feb 13 at 12:28

Used some of what was already here and put my own twist on it using a behavior so I don't have to propogate this code throughout a ton of Views...

public class AllowableCharactersTextBoxBehavior : Behavior<TextBox>
{
    public static readonly DependencyProperty RegularExpressionProperty =
        DependencyProperty.Register("RegularExpression", typeof(string), typeof(AllowableCharactersTextBoxBehavior),
        new FrameworkPropertyMetadata("*"));
public string RegularExpression
{
    get
    {
        return (string)base.GetValue(RegularExpressionProperty);
    }
    set
    {
        base.SetValue(RegularExpressionProperty, value);
    }
}

public static readonly DependencyProperty MaxLengthProperty =
DependencyProperty.Register("MaxLength", typeof(int), typeof(AllowableCharactersTextBoxBehavior),
new FrameworkPropertyMetadata(int.MinValue));

public int MaxLength
{
    get
    {
        return (int)base.GetValue(MaxLengthProperty);
    }
    set
    {
        base.SetValue(MaxLengthProperty, value);
    }
}


protected override void OnAttached()
{
    base.OnAttached();
    AssociatedObject.PreviewTextInput += OnPreviewTextInput;
    DataObject.AddPastingHandler(AssociatedObject, OnPaste);
}

private void OnPaste(object sender, DataObjectPastingEventArgs e)
{
    if (e.DataObject.GetDataPresent(DataFormats.Text))
    {
        string text = Convert.ToString(e.DataObject.GetData(DataFormats.Text));
        bool exceedsMaxLength = false;
        if (MaxLength > 0)
        {
            exceedsMaxLength = text.Length > MaxLength;
        }

        if (!ViewModel.ValidationHelper.IsMatch(text, RegularExpression) || exceedsMaxLength)
        {
            e.CancelCommand();
        }
    }
    else
    {
        e.CancelCommand();
    }
}

void OnPreviewTextInput(object sender, System.Windows.Input.TextCompositionEventArgs e)
{
    bool exceedsMaxLength = false;
    string text = this.AssociatedObject.Text.Insert(this.AssociatedObject.CaretIndex, e.Text);
    if (MaxLength > 0)
    {
        exceedsMaxLength = text.Length > MaxLength;
    }

    e.Handled = !ViewModel.ValidationHelper.IsMatch(text, RegularExpression) || exceedsMaxLength;
}

protected override void OnDetaching()
{
    base.OnDetaching();
    AssociatedObject.PreviewTextInput -= OnPreviewTextInput;
    DataObject.RemovePastingHandler(AssociatedObject, OnPaste);
}
}

Here is the relevant view code.

<TextBox MaxLength="50" TextWrapping="Wrap" MaxWidth="150" Margin="4"
 Text="{Binding Path=FileNameToPublish}" >
     <interactivity:Interaction.Behaviors>
         <v:AllowableCharactersTextBoxBehavior RegularExpression="^[0-9.\-]+$" MaxLength="50" />
     </interactivity:Interaction.Behaviors> 
</TextBox>
share|improve this answer
1  
it works awesome! i think it's best solution, thank you! :) – Jalal Mar 28 '12 at 22:26
## XAML ##
<TextBox Name="NumberTextBox" PreviewTextInput="NumberValidationTextBox" ></TextBox>

## XAML.CS FILE ##
using System.Text.RegularExpressions;
private void NumberValidationTextBox(object sender, TextCompositionEventArgs e)
{
    Regex regex = new Regex("[^0-9]+");
    e.Handled = regex.IsMatch(e.Text);
}
share|improve this answer
1  
please do not post only code. add some explanations – Cybermaxs - Betclic Oct 4 '12 at 11:43
The Event handler is preview text input. Here regular expression matches the text input only if it is not a number, then it is not made to entry textbox. If you want only alphabets then replace the regular expression as [^a-zA-Z]. – WPFK Oct 19 '12 at 5:29
What about numbers, decimals and operators? – Jason Ebersey May 21 at 19:19
e.Handled = (int)e.Key >= 43 || (int)e.Key <= 34;

in preview keydown event of textbox.

share|improve this answer
Nice interesting little trick.. +1 – K Singh Jul 19 '11 at 17:43
2  
This won't allow you to use a decimal point (.) though! – Jason Ebersey Aug 16 '11 at 20:19
1  
Doesn't allow backspace though. – sventevit Sep 27 '12 at 11:00
Backspace is 2, tab is 3 – Doc Jan 25 at 16:42

I will assume that:

  1. your TextBox for which you want to allow numeric input only has its Text property initially set to some valid number value (for example 2.7172).

  2. your Textbox is a child of your main window

  3. your main window is of class Window1

  4. your TextBox name is numericTB

Basic idea:

  1. Add: private string previousText; to your main window class (Window1)

  2. Add: previousText = numericTB.Text; to your main window constructor

  3. create handler for numericTB.TextChanged event to be something like this

    private void numericTB_TextChanged(object sender, TextChangedEventArgs e)
    {
        double num = 0;
        bool success = double.TryParse(((TextBox)sender).Text, out num);
        if (success & num >= 0)
            previousText = ((TextBox)sender).Text;
        else
            ((TextBox)sender).Text = previousText;
    }
    

This will keep setting previousText to numericTB.Text as long as it is valid, and set numericTB.Text to its last valid value if user writes something that you don't like. Of course this is just basic idea and it is just "idiot resistant", not "idiot proof". It doesn't handle case in which user messes with spaces, for example. So here is complete solution which I think is "idiot proof", and if I'm wrong please tell me:

  1. content of your Window1.xaml file:

    <Window x:Class="IdiotProofNumericTextBox.Window1"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="Window1" Height="300" Width="300">
        <Grid>
            <TextBox Height="30" Width="100" Name="numericTB" TextChanged="numericTB_TextChanged"/>
        </Grid>
    </Window>
    
  2. content of your Window.xaml.cs file:

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Windows;
    using System.Windows.Controls;
    using System.Windows.Data;
    using System.Windows.Documents;
    using System.Windows.Input;
    using System.Windows.Media;
    using System.Windows.Media.Imaging;
    using System.Windows.Navigation;
    using System.Windows.Shapes;
    
    namespace IdiotProofNumericTextBox
    {
        public partial class Window1 : Window
        {
            private string previousText;
    
            public Window1()
            {
                InitializeComponent();
                previousText = numericTB.Text;
            }
    
            private void numericTB_TextChanged(object sender, TextChangedEventArgs e)
            {
                if (string.IsNullOrEmpty(((TextBox)sender).Text))
                    previousText = "";
                else
                {
                    double num = 0;
                    bool success = double.TryParse(((TextBox)sender).Text, out num);
                    if (success & num >= 0)
                    {
                        ((TextBox)sender).Text.Trim();
                        previousText = ((TextBox)sender).Text;
                    }
                    else
                    {
                        ((TextBox)sender).Text = previousText;
                        ((TextBox)sender).SelectionStart = ((TextBox)sender).Text.Length;
                    }
                }
            }
        }
    }
    

Ant that's it. If you have many TextBoxes than I recommend creating CustomControl that inherits from TextBox, so you can wrap previousText and numericTB_TextChanged up in a separate file.

Happy coding.

share|improve this answer
Wow this is great! How could I allow a negative symbol in the front though? – theNoobGuy Aug 25 '11 at 16:39
 Private Sub DetailTextBox_PreviewTextInput(ByVal sender As Object, ByVal e As System.Windows.Input.TextCompositionEventArgs) Handles DetailTextBox.PreviewTextInput
        If _IsANumber Then
            If Not Char.IsNumber(e.Text) Then
                e.Handled = True
            End If
        End If
    End Sub
share|improve this answer

We can do validation on text box changed event. The following implementation prevents keypress input other than numeric and one decimal point.

private void textBoxNumeric_TextChanged(object sender, TextChangedEventArgs e) 
{         
      TextBox textBox = sender as TextBox;         
      Int32 selectionStart = textBox.SelectionStart;         
      Int32 selectionLength = textBox.SelectionLength;         
      String newText = String.Empty;         
      int count = 0;         
      foreach (Char c in textBox.Text.ToCharArray())         
      {             
         if (Char.IsDigit(c) || Char.IsControl(c) || (c == '.' && count == 0))             
         {                 
            newText += c;                 
            if (c == '.')                     
              count += 1;             
         }         
     }         
     textBox.Text = newText;         
     textBox.SelectionStart = selectionStart <= textBox.Text.Length ? selectionStart :        textBox.Text.Length;     
} 
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.