RichtextBox中的颜色​​特定单词

时间:2014-02-24 06:37:20

标签: c# winforms

如何制作,当用户在富文本框中键入“while”或“if”等特定单词时,单词会变成紫色而没有任何问题?我尝试了不同的代码,但没有一个是可用的。代码如下:

if (richTextBox.Text.Contains("while"))
  {
    richTextBox.Select(richTextBox.Text.IndexOf("while"), "while".Length);
    richTextBox.SelectionColor = Color.Aqua;
  }

此外,我希望当用户删除单词或从单词中删除一个字母时,该单词将恢复为默认颜色。我正在制作一个带有代码编辑器的程序。

我正在使用Visual c#。

谢谢。

4 个答案:

答案 0 :(得分:17)

将事件添加到您更改的富文本框中,

  private void Rchtxt_TextChanged(object sender, EventArgs e)
        {
            this.CheckKeyword("while", Color.Purple, 0);
            this.CheckKeyword("if", Color.Green, 0);
        }



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

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

答案 1 :(得分:3)

这是你可以做的事情,我建议使用正则表达式来查找该单词的所有匹配项,以防它多次出现。还要记住,字符串查找可以是for循环旁边的字符串列表,以考虑多个单词,但这应该让你开始。

//dont foget to use this at the top of the page
using System.Text.RegularExpressions;

    private void richTextBox1_TextChanged(object sender, EventArgs e)
    {
        string find = "while";
        if (richTextBox1.Text.Contains(find))
        {
            var matchString = Regex.Escape(find);
            foreach (Match match in Regex.Matches(richTextBox1.Text, matchString))
            {
            richTextBox1.Select(match.Index, find.Length);
            richTextBox1.SelectionColor = Color.Aqua;
            richTextBox1.Select(richTextBox1.TextLength, 0);
            richTextBox1.SelectionColor = richTextBox1.ForeColor;
            };
        }
    }

答案 2 :(得分:1)

您可以使用richTextBox1_KeyDown活动

private void richTextBox1_KeyDown(object sender, KeyEventArgs e)
        {
            if (e.KeyCode == Keys.Space)
            {
                String abc = this.richTextBox1.Text.Split(' ').Last();
                if (abc == "while")
                {
                    int stIndex = 0;
                    stIndex = richTextBox1.Find(abc, stIndex, RichTextBoxFinds.MatchCase);
                    richTextBox1.Select(stIndex, abc.Length);
                    richTextBox1.SelectionColor = Color.Aqua;
                    richTextBox1.Select(richTextBox1.TextLength, 0);
                    richTextBox1.SelectionColor = richTextBox1.ForeColor;
                }
            }
        }

答案 3 :(得分:0)

如果要突出显示正则表达式而不是单词,可以使用以下代码:

   private void ColorizePattern(string pattern, Color color)
   {
            int selectStart = this.textBoxSrc.SelectionStart;                
            foreach (Match match in Regex.Matches(textBoxSrc.Text, pattern))
            {
                textBoxSrc.Select(match.Index, match.Length);
                textBoxSrc.SelectionColor = color;
                textBoxSrc.Select(selectStart, 0);
                textBoxSrc.SelectionColor = textBoxSrc.ForeColor;
            };      
   }