Possible Duplicate:
Create WPF TextBox that accepts only numbers
How i can check if inputed value in textbox contains text? I want to user input only numbers Thanks
How i can check if inputed value in textbox contains text? I want to user input only numbers Thanks |
|||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Assuming you are using integers then:
For doubles, replace There is probably some fancy WPF way to do this as well (as indicated by V4Vendetta's comment). |
|||||||
|
|
You could you a regular expression to check for Alternatively Alternatively you could use a maskedtextbox control, either by embeding the winforms control using a host control or using something like Infragistics editor. |
|||
|
|
|
If you want only number check if you can parse it. If you want |
||||
|
|