C# Textbox 自动换行

方法1

使用textboxAppendText方法

方法2

textBox.ScrollToCaret();
this.textBox.Focus();//获取焦点
this.textBox.Select(this.textBox.TextLength,0);//光标定位到文本最后
this.textBox.ScrollToCaret();//滚动到光标处
原文地址:https://www.cnblogs.com/velscode/p/10792392.html