111,129
社区成员
发帖
与我相关
我的任务
分享
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
char achar = e.KeyChar;
textBox1.Paste(achar.ToString());
//if (e.KeyChar == 8 || Char.IsDigit(e.KeyChar))
{
num++;
//e.Handled = false;
e.Handled = true;
if (num % 4 == 0)
{
textBox1.Paste(" ");
}
}
//else
//{
// e.Handled = true;
//}
}