我的程序调用Java,然后将stdout重定向到RichTextBox
。我的问题是,每次写入数据时,垂直滚动条始终位于框的顶部。
即使滚动到底部,一旦写入新数据,它也会移到顶部。我想相反。
因此,当写入新数据时,它停留在底部。我怎样才能做到这一点?
Answers:
是的,您可以使用以下ScrollToCaret()
方法:
// bind this method to its TextChanged event handler:
// richTextBox.TextChanged += richTextBox_TextChanged;
private void richTextBox_TextChanged(object sender, EventArgs e) {
// set the current caret position to the end
richTextBox.SelectionStart = richTextBox.Text.Length;
// scroll it automatically
richTextBox.ScrollToCaret();
}
如果RichTextBox具有焦点,并且您使用AppendText添加信息,则它将一直滚动到末尾。如果将HideSelection设置为False,它将在失去焦点时保持其选择并保持自动滚动。
我设计了使用以下方法的Log Viewer GUI。它用尽了整个核心。摆脱此代码并将HideSelection设置为False,可使CPU使用率降低到1-2%
//Don't use this!
richTextBox.AppendText(text);
richTextBox.ScrollToEnd();
ScrollToEnd()
不是WinForms版本上可用的方法。
ScrollToEnd()
System.Windows.Forms.TextBoxBase
继承的文档中看到它RichTextBox
。
[DllImport("user32.dll", CharSet = CharSet.Auto)]
private static extern IntPtr SendMessage(IntPtr hWnd, int wMsg, IntPtr wParam, IntPtr lParam);
private const int WM_VSCROLL = 277;
private const int SB_PAGEBOTTOM = 7;
internal static void ScrollToBottom(RichTextBox richTextBox)
{
SendMessage(richTextBox.Handle, WM_VSCROLL, (IntPtr)SB_PAGEBOTTOM, IntPtr.Zero);
richTextBox.SelectionStart = richTextBox.Text.Length;
}
ScrollToBottom(richTextBox);
通过使用上述方法,您可以将富文本框滚动到底部
写入新数据时,如果使用AppendText()
它,则不会向上滚动,并且始终停留在底部。