谢谢
5 个解决方案
#1
txtChatHistory.SelectAll();
txtChatHistory.Selection.Select(txtChatHistory.Selection.End, txtChatHistory.Selection.End);
txtChatHistory.Selection.Select(txtChatHistory.Selection.End, txtChatHistory.Selection.End);
#2
我只想置地,为什么要SelectAll呢,你这是用scrollViewer来做的吗?
#3
txtChatHistory 是 RichTextBox
#4
你为什么要告诉我RichTextBox呢,我问的是ScrollViewer
#5
在scoll滚动前需要UpdateLayout,使用以下代码就可以实现。
scroll_content.UpdateLayout();
scroll_content.ScrollToVerticalOffset(double.MaxValue);
#1
txtChatHistory.SelectAll();
txtChatHistory.Selection.Select(txtChatHistory.Selection.End, txtChatHistory.Selection.End);
txtChatHistory.Selection.Select(txtChatHistory.Selection.End, txtChatHistory.Selection.End);
#2
我只想置地,为什么要SelectAll呢,你这是用scrollViewer来做的吗?
#3
txtChatHistory 是 RichTextBox
#4
你为什么要告诉我RichTextBox呢,我问的是ScrollViewer
#5
在scoll滚动前需要UpdateLayout,使用以下代码就可以实现。
scroll_content.UpdateLayout();
scroll_content.ScrollToVerticalOffset(double.MaxValue);