I\'m looking to accept digits and the decimal point, but no sign.
I\'ve looked at samples using the NumericUpDown control for Windows Forms, and this sample of a Num
PreviewTextInput += (s, e) => { e.Handled = !e.Text.All(char.IsDigit); };