protected override void WndProc(ref Message m) { base.WndProc(ref m); if (m.Msg == 0x0312) { //Add texts of every textboxed to a clean list. textBoxTexts.Clear(); textBoxTexts.Add(richTextBox1.Text); textBoxTexts.Add(richTextBox2.Text); textBoxTexts.Add(richTextBox3.Text); textBoxTexts.Add(richTextBox4.Text); textBoxTexts.Add(richTextBox5.Text); textBoxTexts.Add(richTextBox6.Text); textBoxTexts.Add(richTextBox7.Text); textBoxTexts.Add(richTextBox8.Text); textBoxTexts.Add(richTextBox9.Text); textBoxTexts.Add(richTextBox10.Text); //Toggle timer. if (TypeTimer.Enabled) { TypeTimer.Stop(); } else if (TypeTimer.Enabled == false) { TypeTimer.Start(); } } }
private void All_TextChanged(object sender, EventArgs e) { TypeTimer.Stop(); }
private void TextBox_Gotfocus(object sender, EventArgs e) { TypeTimer.Stop(); }