方法1
使用textbox的AppendText方法
textbox
AppendText
方法2
textBox.ScrollToCaret(); this.textBox.Focus();//获取焦点 this.textBox.Select(this.textBox.TextLength,0);//光标定位到文本最后 this.textBox.ScrollToCaret();//滚动到光标处
C# Textbox 自动换行
原文:https://www.cnblogs.com/velscode/p/10792392.html