2012-11-22 91 views

回答

34

設置文本框性質:

多行=真
滾動條=兩個

要在TextChanged事件自動滾動:

textBox1.SelectionStart = textBox1.Text.Length; 
textBox1.ScrollToCaret();