我无法使用以下代码删除文本框数据
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
if(char.IsDigit(e.KeyChar)==false)
{
count++;
}
if (count == 1)
{
textBox1.Text = ("");
count = 0;
}
}
尝试使用clear
方法以及我输入的字母留在文本框中,当我键入任何键时,它会被覆盖,但我希望文本框第二次为空并删除上一个数据