c# WPF RichTextBox 文字颜色
Posted wgscd
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c# WPF RichTextBox 文字颜色相关的知识,希望对你有一定的参考价值。
public MainWindow() { InitializeComponent(); Run run = new Run("This is my text"); run.Foreground = new SolidColorBrush(Colors.Red); // My Color Paragraph paragraph = new Paragraph(); paragraph.Inlines.Add(run); run = new Run() { Text = "This itttttyyyyyyyyyy\r\nyyyyyyyyyyytttttts my text" , Foreground = new SolidColorBrush(Colors.Blue) }; paragraph.Inlines.Add(run); txtLog .Document.Blocks.Add(paragraph); txtLog.UpdateLayout();
//----------------写到一个公共方法更好-----------------------
display("PinkPinkPinkPinkPinkPink", Colors.Pink); } void display(string txt, Color color) { Run run = new Run() { Text = txt, Foreground = new SolidColorBrush(color) }; Paragraph paragraph = new Paragraph(); paragraph.Inlines.Add(run); txtLog.Document.Blocks.Add(paragraph); txtLog.UpdateLayout(); }
以上是关于c# WPF RichTextBox 文字颜色的主要内容,如果未能解决你的问题,请参考以下文章
C#的richtextbox中,输入文字时,如何使不同的字符串显示不同的颜色?