在ContentsResized方法里面处理下。
先绑定ContentsResized方法,
this.info2.ContentsResized += new System.Windows.Forms.ContentsResizedEventHandler(this.info2_ContentsResized);
this.info3.ContentsResized += new System.Windows.Forms.ContentsResizedEventHandler(this.info3_ContentsResized);
然后在方法里处理下,
private void info2_ContentsResized(Object sender, ContentsResizedEventArgs e)
{
info2.SelectionStart = info2.Text.Length;
info2.ScrollToCaret();
}
private void info3_ContentsResized(Object sender, ContentsResizedEventArgs e)
{
info3.SelectionStart = info3.Text.Length;
info3.ScrollToCaret();
}