如何限制用户在 C# 的文本框中输入多个小数?下面的代码是我的起点:
if (System.Text.RegularExpressions.Regex.IsMatch(textBox1.Text, "[^0-9.]+")) { MessageBox.Show("Please enter only numbers."); textBox1.Text = textBox1.Text.Remove(textBox1.Text.Length - 1);}
慕森卡
相关分类