如何使用 C# 滚动到 RichTextBox 控件的指定行号?
如何使用 C# 滚动到 RichTextBox 控件的指定行号?这是WinForms 版本。
How can I scroll to a specified line number of a RichTextBox control using C#? It's the WinForms version.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
你可以尝试这样的事情。
如果您的 RichTextBox 中有大量重复内容,这将无法完美工作。我确实希望它对您有用。
You can try something like this.
This will not work perfectly if you have lots of repetition within your RichTextBox. I do hope that it might be of some use to you.
使用此代码,光标跳转到所需行中的第一列。
在任何情况下它都能完美运行,即使所需的线路出现多次。
With this code the cursor jumps to the first column in the wanted line.
It works perfectly in any case, even when the wanted line occurs several times.
我不确定它是否有一个方法,但是如何计算
Text
中的换行符,然后设置插入符号(通过SelectionStart
和SelectionLength
)和ScrollToCaret()
?I'm not sure, if it has a method for this, but how about counting the linebreaks in the
Text
and then set the caret (viaSelectionStart
andSelectionLength
) andScrollToCaret()
?在这种情况下拆分文本会有帮助吗?
例如:
string[]lines = myRichTextBox.Text.Split('\n');
intlinesCount =lines.Length;
这会告诉您行数。
Would it help in this situation to split up the text?
For example:
string[] lines = myRichTextBox.Text.Split('\n');
int linesCount = lines.Length;
This will tell you the number of lines.