2013年8月21日 星期三

Textbox捲到最末行

//move the caret to the end of the text  
textBoxLog.SelectionStart = textBoxLog.TextLength;  
//scroll to the caret  
textBoxLog.ScrollToCaret();  

參考
http://stackoverflow.com/questions/1069497/how-to-scroll-down-in-a-textbox-by-code-in-c-sharp

沒有留言: