Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 273 Bytes

File metadata and controls

9 lines (8 loc) · 273 Bytes

Rich Textbox

Automatically scroll to the bottom

private void richTextBox_TextChanged(object sender, EventArgs e) {
      richTextBox1.SelectionStart = richTextBox1.Text.Length; // place the caret
      richTextBox1.ScrollToCaret(); // scroll to the caret
}