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
You can also try using data validation if users commit data before you use it. Doing that I found was fairly simple and cleaner than fiddling about with keys.
Otherwise, you could always disable Paste too!