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
Private Sub Value1TextBox_PreviewTextInput(ByVal sender As Object, ByVal e As TextCompositionEventArgs) Handles Value1TextBox.PreviewTextInput Try If Not IsNumeric(e.Text) Then e.Handled = True End If Catch ex As Exception End Try End Sub
Worked for me.