9

我是 Windows 窗体的新手。我正在使用 VS 2008、C# 编写 RichTextBox。当我写到 RichTextBox 时,我希望能够用不同的颜色为每一行着色。有人能指点我的样品吗?谢谢

foreach (string file in myfiles)
{
  // As I process my files
  // richTextBox1.Text += "My processing results";
  if(file == "somefileName")
  {
    // Color above entered line or enter new colored line
  }

}
4

1 回答 1

13

SelectionColor在追加之前设置,例如:

    int line = 0;
    foreach (string file in myfiles)
    {
        // Whatever method you want to choose a color, here
        // I'm just alternating between red and blue
        richTextBox1.SelectionColor = 
            line % 2 == 0 ? Color.Red : Color.Blue;

        // AppendText is better than rtb.Text += ...
        richTextBox1.AppendText(file + "\r\n");
        line++;
    }
于 2009-02-23T18:54:48.960 回答