Hi there!
I am having some problem with user input validation.....what I want to do is use Numbers only Text box in WPF......While user gives an input it must not allow the use of strings or any other character.....Anyone have any idea on this??
I have found a piece of code, but I am not able to use it correctly. If someone have better method please help me or give some insight on using this....Thanks......
Code:
public class NumberTextBox:TextBox
{
protected override void OnPreviewTextInput(System.Windows.Input.TextCompositionEventArgs e)
{
e.Handled = !AreAllValidNumericChars(e.Text);
base.OnPreviewTextInput(e);
}
}
Although I haven't tested the above code , It should work just fine....but I have found and successfully used following bit of code.....Hope this Helps someone along the way.....
Code:
private void textBox1_PreviewTextInput(object sender, TextCompositionEventArgs e)
{
foreach(char c in e.Text)
{
if (!char.IsDigit(c))
{
e.Handled = true;
break;
}
}
}
for this method to work you need to select the exact textbox and go to eventlist button in the Property window......search for PreviewTextInput and double click it....it will automatically generate the event for you...now enter the code inside that event braces......
This has some loop holes like it can take space, we can paste inside here and tab key for shifting between the various window element is absent etc.....so any one have idea maintaining that please help, although my initial requirement is fullfilled by this bit of code.....Thanks.....
Last edited by rocky_upadhaya; March 7th, 2010 at 06:11 PM.
Bookmarks