我可以在C#中创建一个快速颜色文本框,并轻松添加文本:
FastColoredTextBox tb = new FastColoredTextBox();
this.Controls.Add(tb);
tb.Location = new Point(10, 10);
tb.Visible = true;
tb.Text = "This is some text to display in the FCTB.";
我不明白如何将该文字中的一个单词更改为其他颜色。
我不想通过语法识别单词,我的应用程序更像是文字处理器,用户希望颜色强调单词。
例如,如何更改单词" some"在上面的代码段中显示为绿色而不是黑色?
由于
答案 0 :(得分:0)
我终于找到了我正在寻找的成员函数。
以下是如何做到的。
FastColoredTextBox tb = new FastColoredTextBox();
this.Controls.Add(tb);
tb.Location = new Point(0, 0);
tb.Visible = true;
tb.Text = "This is some text to display in the FCTB.";
// define a new Style... specifically a TextStyle
Style greenstyle = new TextStyle(Brushes.Green, Brushes.White, FontStyle.Bold);
// select the range of characters to modify
Range rng = new Range(tb, 8, 0, 12, 0);
// change the display to green
rng.SetStyle(greenstyle);