1 private void richTextBox1_TextChanged(object sender, EventArgs e) 2 { 3 this.richTextBox1.Focus(); 4 this.richTextBox1.Select(this.richTextBox1.TextLength, 0); 5 this.richTextBox1.ScrollToCaret(); 6 }
时间: 2024-11-13 03:40:20
1 private void richTextBox1_TextChanged(object sender, EventArgs e) 2 { 3 this.richTextBox1.Focus(); 4 this.richTextBox1.Select(this.richTextBox1.TextLength, 0); 5 this.richTextBox1.ScrollToCaret(); 6 }