RichTextAutoBottom.cs 454 B

1234567891011121314151617181920
  1. using System;
  2. using System.Windows.Forms;
  3. namespace UAS_PLCDataReader
  4. {
  5. public partial class RichTextAutoBottom : RichTextBox
  6. {
  7. public RichTextAutoBottom()
  8. {
  9. InitializeComponent();
  10. TextChanged += RichTextBox_TextChange;
  11. }
  12. private void RichTextBox_TextChange(object sender, EventArgs e)
  13. {
  14. SelectionStart = Text.Length;
  15. ScrollToCaret();
  16. }
  17. }
  18. }