WPF RichTextBox设置文本颜色
时间:2015-07-20 19:19:24
收藏:0
阅读:918
//追加 txtResult.Document.Blocks.Add(new Paragraph(new Run("add by run") { Foreground = Brushes.Blue })); //替换 txtResult.Selection.Text = "add by selection";
txtResult.Selection.ApplyPropertyValue(TextElement.ForegroundProperty, Brushes.Red);
原文:http://www.cnblogs.com/dajianshi/p/4662125.html
评论(0)