如何在 RichTextBox 中更改部分文本颜色

How to change part of text color at RichTextBox

美好的一天!

我尝试将部分文本更改为红色。

所以,我尝试使用 TextBox,但它不起作用。 所以,我读到,RichTextBox 可以做到这一点:i use this question

但是我不知道如何附加彩色文本?

  TextRange rangeOfText1 = new TextRange(tbScriptCode.Document.ContentEnd,    tbScriptCode.Document.ContentEnd);
 rangeOfText1.Text = "Text1 ";
rangeOfText1.ApplyPropertyValue(TextElement.ForegroundProperty, Brushes.Blue);
                             rangeOfText1.ApplyPropertyValue(TextElement.FontWeightProperty, FontWeights.Bold);

好的,我得到了 TextRange,但是如何将它附加到 RichTextBox?

你能告诉我如何把文字的一部分变成红色吗? 谢谢!

从你的例子开始:

TextRange rangeOfText2 = new TextRange(tbScriptCode.Document.ContentEnd,
    tbScriptCode.Document.ContentEnd);

rangeOfText2.Text = "RED !";

rangeOfText2.ApplyPropertyValue(TextElement.ForegroundProperty,Brushes.Red);
rangeOfText2.ApplyPropertyValue(TextElement.FontWeightProperty, FontWeights.Bold);

适合我。

Ok, i get TextRange, but how to append it to RichTextBox?

已经添加

new TextRange(tbScriptCode.Document.ContentEnd, tbScriptCode.Document.ContentEnd);

你还可以做什么(我最近自己用这个):

var fd = new FlowDocument();

Paragraph paragraph = new Paragraph();

paragraph.Inlines.Add(new Run("normal text and this is in "));
paragraph.Inlines.Add(new Run("red") { Foreground = Brushes.Red });
paragraph.Inlines.Add(new Run(" and this is blue.") { Foreground = Brushes.Blue });

fd.Blocks.Add(paragraph);

tbScriptCode.Document = fd;