如何将焦点设置在WPF RichTextBox的最后一行
我正在 RichTextBox
中动态添加文本。
如何在最后一行设置 Focus
以便用户可以看到它?
I am dynamically adding text in a RichTextBox
.
How can I set Focus
on the last line so the user can see it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这会将插入符号移动到最后一行:
但它不会滚动
richTextBox
以使插入符号可见。要实现这一点,您还必须调用ScrollToEnd()
:This will move the caret to the last line:
But it will not scroll the
richTextBox
to make the caret visible. To accomplish that you also have to callScrollToEnd()
: