0
You will need to:
1-Richtextbox: richTextBox1
1-Toolstripstatuslabel: toolStripStatusLabel1
1-Timer: timer1
, with an interval of 300ms
Use the Textchanged event from richTextBox1
:
private void richTextBox1_TextChanged(object sender, EventArgs e)
{
toolStripStatusLabel1.Text = "Digitando...";
timer1.Enabled = false;
timer1.Enabled = true;
}
Use the Tick event from timer1
:
private void timer1_Tick(object sender, EventArgs e)
{
timer1.Enabled = false;
toolStripStatusLabel1.Text = "Pronto!";
}
I believe it is a very unnecessary processing, but if you want it so I will post a code that can help
– Rovann Linhalis