如果存在文本,则在Richtextbox中突出显示整行

时间:2015-03-09 09:20:50

标签: c# winforms richtextbox highlight

enter image description here

我正在尝试突出显示RichTextBox中的特定行,如图所示。

int ptrsize = 10;
int* linenum; 
for (int i = 0; i < ptrsize; i++)
{           
    int value = (linenum[i]) * 10;
    string searchText = value.ToString();
    int indexToText = richTextBox.Find(searchText);
    int endIndex = searchText.Length;
    richTextBox.Select(indexToText, endIndex);
    richTextBox.SelectionColor = Color.Blue;
}

如果存在文本(即2010),我想突出显示整行。

2010 19.5 7.37 105 0.67 0.26 0.69

2 个答案:

答案 0 :(得分:3)

如果给定的行包含给定的文本,则会突出显示该行:

void highlightLineContaining(RichTextBox rtb, int line, string search, Color color)
{
    int c0 = rtb.GetFirstCharIndexFromLine(line);
    int c1 = rtb.GetFirstCharIndexFromLine(line+1);
    if (c1 < 0) c1 = rtb.Text.Length;
    rtb.SelectionStart = c0;
    rtb.SelectionLength = c1 - c0;
    if (rtb.SelectedText.Contains(search))
        rtb.SelectionColor = color;
    rtb.SelectionLength = 0;
}

您可能希望存储和恢复原始Selection

有时更改SelectionBackColor看起来更好。试一试!

你可以在整个RTB上调用它:

for (int i = 0; i < richTextBox.Lines.Count(); i++)
      highlightLineContaining(richTextBox, i, searchText, Color.Red);

答案 1 :(得分:1)

我在@ TaW的代码的帮助下对以前的代码做了一些更改。

enter image description here

for (int j = 0; j < ptrsize; j++)
{
   int value = (linenum[j]) * 10;
   string searchText = value.ToString();
   for (int i = 0; i < richTextBox.Lines.Count(); i++)
      {
         highlightLineContaining(richTextBox, i, searchText, Color.Red);
      }
}