如何在WinForms中制作自动滚动多行TextBox? [重复]
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在WinForms中制作自动滚动多行TextBox? [重复]相关的知识,希望对你有一定的参考价值。
可能重复: How do I automatically scroll to the bottom of a multiline text box?
我使用多线TextBox
在从BackgroundWorker
到达的新行中输出一些信息。
每次新线路到达时,我可以将其滚动到最底部吗?
默认情况下,它似乎恰恰相反 - 每次新行到达并且Text
属性发生更改时,它会滚动到第一行。
答案
设置TextBox
属性:
Multiline = True;
ScrollBars = Both;
要自动滚动TextChanged
事件:
textBox1.SelectionStart = textBox1.Text.Length;
textBox1.ScrollToCaret();
以上是关于如何在WinForms中制作自动滚动多行TextBox? [重复]的主要内容,如果未能解决你的问题,请参考以下文章