Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个多行文本框的日志,它使用 AppendText 不断更新。我想产生一种效果,当新数据到达时,它会从底部平滑地滚动而不是简单地出现。我怎样才能做到无闪烁?我的一个想法是使文本框高度更高,然后更改文本框的 y 坐标,但这似乎是个坏主意。有什么建议么?谢谢
更新文本框后试试这个
// Textbox update code textBox1.SelectionStart = textBox1.Text.Length; textBox1.ScrollToCaret();