我想将TextBox设为数字,我尝试了这个函数:
<TextBox Name="txtProductId" PreviewTextInput="Number_Validation"/>
public static void Number_Validation(object sender,System.Windows.Input.TextCompositionEventArgs e)
{
System.Text.RegularExpressions.Regex regex = new System.Text.RegularExpressions.Regex("[^0-9]+");
e.Handled = regex.IsMatch(e.Text);
}
但它接受'空间'和数字。我不需要空间。
“^ [0-9] +”。 ^应该在外面