有textBox1、textBox2、textBox3、textBox4、textBox5已使用了
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
        {
            if (!char.IsDigit(e.KeyChar))
            {
                e.Handled = true;
            }
        }
限制只能输入数字,如何才能实现,使用backspace可以清空textBox呢?谢谢