本文介绍了我如何可以滚动到使用C#在一个WinForms文本框指定行?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何使用C#我可以滚动到一个WinForms文本框指定行?
How can I scroll to a specified line in a WinForms TextBox using C#?
感谢
推荐答案
下面是你如何滚动选择:
Here's how you scroll to the selection:
textBox.ScrollToCaret();
要滚动到指定行,你可以通过TextBox.Lines财产循环,总其长度为。找到指定行的开始,然后设置TextBox.SelectionStart定位插入符号
To scroll to a specified line, you could loop through the TextBox.Lines property, total their lengths to find the start of the specified line and then set TextBox.SelectionStart to position the caret.
沿着这(未经测试的代码)东西线:
Something along the lines of this (untested code):
int position = 0;
for (int i = 0; i < lineToGoto; i++)
{
position += textBox.Lines[i].Length;
}
textBox.SelectionStart = position;
textBox.ScrollToCaret();
这篇关于我如何可以滚动到使用C#在一个WinForms文本框指定行?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!