Должны работать, вешайте на событие
PreviewTextInput и проверяйте не e.KeyChar,а
e.Text
типа
public Window()
{
InitializeComponent();
this.textBox.PreviewTextInput += new TextCompositionEventHandler(textBox_PreviewTextInput);
}
void textBox_PreviewTextInput(object sender, TextCompositionEventArgs e)
{
if (!Char.IsDigit(e.Text,0)) e.Handled = true;
}