如何根据C#中的字符串更改RichTextBox文本

时间:2017-03-29 13:35:17

标签: c# winforms syntax-highlighting

所以,我正在尝试构建一个RichTextBox,它允许我在其中编写代码并根据C#编程语言更改关键字的颜色。

首先,我宣布了这一点:

string[] palavraschave = { "abstract", "as", "base", "bool", "break", "byte", "case", "catch", "char", "checked", "class", "const", "continue", "decimal", "default", 
     "delegate", "do", "double", "else", "enum", "event", "explicit", "extern", "false", "finally", "fixed", "float", "for", "foreach", "goto",
     "if", "implicit", "in", "int", "interface", "internal", "is", "lock", "long", "namespace", "new", "null", "object", "operator", "out", 
     "override", "params", "private", "protected", "public", "readonly", "ref", "return", "sbyte", "sealed", "short", "sizeof", "stackalloc", 
     "static", "string", "struct", "switch", "this", "throw", "true", "try", "typeof", "uint", "ulong", "unchecked", "unsafe", "ushort", 
     "using", "virtual", "void", "volatile", "while", "add", "alias", "ascending", "descending", "dynamic", "from", "get", "global", "group", 
     "into", "join", "let", "orderby", "partial", "remove", "select", "set", "value", "var", "where", "yield" };

然后我有一个方法来检查RichTextBox

private void CheckRichTextBox(string word, Color color, int startIndex)
{
    if (this.rchBoxText.Text.Contains(word))
    {
        int index = -1;
        int selectStart = this.rchBoxText.SelectionStart;

        while ((index = this.rchBoxText.Text.IndexOf(word, (index + 1))) != -1)
        {
            this.rchBoxText.Select((index + startIndex), word.Length);
            this.rchBoxText.SelectionColor = cor;
            this.rchBoxText.Select(selectStart, 0);
            this.rchBoxText.SelectionColor = Color.Black;
        }
    }
}

要调用它,我会将这段代码用于RichTextBox TextChanged事件:

this.CheckRichTextBox(palavraschave.ToString(), Color.Blue, 0);

但它不起作用。我做错了什么?

2 个答案:

答案 0 :(得分:0)

你需要为单词数组中的每个单词执行一次操作,并为每个单词调用您的过程而不是调用toString。或者将数组传递给你的函数并在那里循环。

但正如其他人所说,已经有很多解决方案可以用于此类事情。

答案 1 :(得分:0)

考虑使用类似ColorCode的内容;这项工作已经做得很好,而且可能更有效率。 为此,请添加NuGet包,然后将foo33 bar12 bar66 foo14 bar45 替换为RichTextBox控件,并将源文本传递到颜色处理器中:

WebBrowser

有关添加NuGet包的信息,请参阅here

或者,如果您正在寻找语法高亮文本编辑器,您可以使用Scintilla。

首先添加名为using ColorCode; [...] webBrowser1.DocumentText = new CodeColorizer().Colorize(mySourceText, Languages.CSharp); 的NuGet包,这次需要额外的步骤才能使控件出现在工具箱中;右键单击Windows窗体工具箱,选择“选择项目”,然后选择“浏览”,然后浏览到Scintilla DLL。 在我的项目中,这是在这里;

jacobslusser.ScintillaNET

这将添加' Scintilla'控制到工具箱,您可以将其拖到表单中。最后,在表单的packages\jacobslusser.ScintillaNET.3.6.3\lib\net40\ScintillaNET.dll事件中,添加以下'配方'使其看起来类似于Visual Studio的语法高亮:

Load

更多关于Scintilla here的信息。来自here的食谱。