我想限制可以在文本框中输入的值;
对于上面所有的另一个文本框,但只能使用0到1之间的较低值
char ch = e.KeyChar;
if (!Char.IsDigit(ch) && PercentBar.Text.IndexOf(@"\.\d\d") != -1
&& ch != 8 && ch != 46 && ch != 32)
{
e.Handled = true;
return;
这是我当前的代码,但似乎并没有做很多