C# RichTextBox 的滚动
有没有一种方法可以用代码自动将richtextbox滚动到顶部? 谢谢!
Is there a method to scroll the richtextbox to the top automatically with codes?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
设置
.SelectionStart
< /a>=0
然后.ScrollToCaret()
。Set
.SelectionStart
=0
and then.ScrollToCaret()
.你是说底部吗?
实例.SelectionStart = 实例.Text.Length;
或者我猜顶部是instance.SelectionStart = 0。
you mean bottom?
instance.SelectionStart = instance.Text.Length;
or i guess top would be instance.SelectionStart = 0.
尝试一下上面的两行代码,它对我有用!
tRY the above 2 lines of code it worked for me!