方法1
使用textbox的AppendText方法
textbox
AppendText
方法2
textBox.ScrollToCaret(); this.textBox.Focus();//获取焦点 this.textBox.Select(this.textBox.TextLength,0);//光标定位到文本最后 this.textBox.ScrollToCaret();//滚动到光标处