How are you handling the entry of numeric values in WPF applications?
Without a NumericUpDown control, I\'ve been using a TextBox and handling its PreviewKeyDown eve
Can you not just use something like the following?
int numericValue = 0; if (false == int.TryParse(yourInput, out numericValue)) { // handle non-numeric input }