是否可以更改特定字母的TextBlock的前景? 比如我最后三个选择红色,而不是默认的黑色。
我可以通过C#命令吗?
答案 0 :(得分:0)
您可以将文字创建为一系列Run
s。
<TextBlock>
<Run>C</Run>
<Run Foreground="Red">ar</Run>
</TextBlock>
或者从代码隐藏中做到:
var textblock = new TextBlock();
textBlock.Inlines.Add(new Run("C"));
textBlock.Inlines.Add(new Run("ar") {Foreground = new SolidColorBrush(Colors.Red)});