5

我找不到那个功能。基本上我有一个多行文本框,当我执行搜索时,我会突出显示结果。但是,如果结果不在视图中,我将不得不手动向下滚动,直到找到突出显示的结果,这超出了“查找”功能的目的。

我不想使用 RichTextBox,因为我遇到了一些性能问题。

4

2 回答 2

8

您可以GetLineIndexFromCharacterIndex结合使用ScrollToLine

var selectionStart = x;
var selectionLength = y;
textBox.Select(selectionStart, selectionLength);
textBox.ScrollToLine(textBox.GetLineIndexFromCharacterIndex(textBox.SelectionStart));
于 2012-11-29T08:33:56.047 回答
-1

ScrollToLine 对我来说不够准确。我的文本框启用了换行,因此行索引不可靠。相反,我使用了这个:

textBox.CaretIndex = selectionStart;
textBox.ScrollToEnd();
textBox.Select(selectionStart, selectionLength);

基本上, ScrollToEnd 执行滚动到插入符号。

于 2016-10-13T00:48:49.367 回答