当总长度 == 11 时,我编写了格式化数字的代码,它在 texbox 更改时运行,但只有在它有 11 个字符时才格式化,我想在运行时(实时)进行,明白吗?这是可能的 ?查看我的代码:
private void textBox3_TextChanged(object sender, EventArgs e)
{
Int64 cpf = Convert.ToInt64(textBox3.Text);
if (textBox3.TextLength == 11)
{
textBox3.Text = string.Format(@"{0:000\.000\.000-00}", Convert.ToInt64(cpf));
}
}
谢谢