當我第一次添加滾動條時候,我發現滾動條總是跑向上方,經過研究 解決方案如下: this.textBox1.Focus(); 獲取焦點 this.textBox1.Select(this.textBox1.textLength,0); 選擇到最後一行文本 this.textBox1.ScrollToC ...
當我第一次添加滾動條時候,我發現滾動條總是跑向上方,經過研究
解決方案如下:
- this.textBox1.Focus();
- 獲取焦點
- this.textBox1.Select(this.textBox1.textLength,0);
- 選擇到最後一行文本
- this.textBox1.ScrollToCaret();
- 滑輪滾動到游標處