this.textBox1.Focus();//获取焦点
this.textBox1.Select(this.textBox1.TextLength, 0);//光标定位到文本最后
this.textBox1.ScrollToCaret();//滚动到光标处
textBox1.SelectionStart = textBox1.Text.Length; //设定光标位置
textBox1.ScrollToCaret(); //滚动到光标处