have a look at this question and the answer: How to know while user editing the WPF DataGrid Cell is empty?
you should handle TextChanged event too, and your code should be sth like this:
void tb_TextChanged(object sender, TextChangedEventArgs e)
{
TextBox tb=(TextBox)sender;
tb.Forground = Brushes.Black;
int indexOfDot=tb.Text.IndexOf(".");
if (indexOfDot != -1)
{
if (tb.Text.Length>indexOfDot+2)
{
//here you can tell the user that this is a wrong format
//and do other stuff; for example:
tb.Forground = Brushes.Red;
}
}
}
If you want the user not to be able to type a wrong format, then handle OnPreviewKeyDown event. you can set some other conditions. If you want it to be a double, then try this:
double d;
if (double.TryParse(tb.Text,out d) == false)
{
e.Handled = true;
}