在ICSharpCode文本编辑器中选择文本

时间:2010-08-11 18:46:08

标签: c# winforms sharpdevelop

我正在尝试在ICSharpCode TextEditor中选择文本行。以及使文本框转到特定行。该应用程序是在Windows 2010中使用C#构建的Windows窗体应用程序。

我使用文本编辑器的原因是代码突出显示和行号等。

我真的没有太多使用Windows窗体的经验,所以任何帮助将不胜感激。我的守则如下:

textEditorControl.Text = "long file string with line breaks";
textEditorControl.VRulerRow = 10; //Example row selection

1 个答案:

答案 0 :(得分:5)

以下是如何使用SharpDevelop 3.2附带的文本编辑器选择文本的示例:

// Two lines of text.
textEditorControl.Text = 
    "First\r\n" +
    "Second\r\n";

// Start of selection - columns and lines are zero based.
int startCol = 0;
int startLine = 1;
TextLocation start = new TextLocation(startCol, startLine);

// End of selection.
int endCol = 6;
int endLine = 1;
TextLocation end = new TextLocation(endCol, endLine);

// Select the second line.
textEditorControl.ActiveTextAreaControl.SelectionManager.SetSelection(start, end);

// Move cursor to end of selection.
textEditorControl.ActiveTextAreaControl.Caret.Position = end;

我假设“让文本框转到特定行”意味着将光标移动到该行。上例中的最后一行代码向您展示了如何执行此操作。