我希望能够在Text
a 的属性字符串中更改文本的权重(例如从 Normal 更改为 Bold 并再次返回) TextBlock
(可能使用一些控制字符集)。这甚至可能吗?
问问题
120 次
2 回答
1
你在谈论这样的事情吗?
<TextBlock>
<Run Text="Hey it's Normal Text"/>
<Run Text="Hey it's Bold Text" FontWeight="Bold"/>
<Run Text="Hey it's Colored Text" Foreground="Green"/>
</TextBlock>
于 2013-08-08T21:17:47.567 回答
1
TextBLock.Text
创建一个Run
, 你设置 customInlines
代替:
<TextBlock>
Text with <Bold>bold</Bold> within.
<TextBlock>
显然它不再使用该Text
属性。
于 2013-08-08T21:18:14.753 回答