TextBox只允许输入数字
public class NumericTextBox : TextBox
protected override void OnKeyPress(KeyPressEventArgs e)
{
if (!char.IsDigit(e.KeyChar))
{
e.Handled = true;
}
if (!Char.IsDigit(e.KeyChar))
{
e.Handled = true;
}
}
浙公网安备 33010602011771号