gpt4 book ai didi

c# - 在 ICSharpCode 文本编辑器中选择文本

转载 作者:行者123 更新时间:2023-11-30 15:10:17 26 4
gpt4 key购买 nike

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

我使用文本编辑器的原因是为了代码高亮和行号等。

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

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

最佳答案

以下是如何使用 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;

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

关于c# - 在 ICSharpCode 文本编辑器中选择文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3461736/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com