UWP 中 'TextBlock' 的绑定部分
Binding Part of 'TextBlock' in UWP
关于如何仅绑定 'TextBlock.Text' 字符串的一部分的任何想法。
例如:
我想添加 "Your name is {Binding Path=Name}" 并拥有 'OneWay Binding' 而无需使用另一个 'TextBlock' 控件。
将绑定中的文本放入运行中:
<TextBlock>
<Run>Your name is</Run>
<Run Text="{Binding Path=Name}"/>
</TextBlock>
在这种情况下,您可能 运行 遇到运行之间的空白问题。在这种情况下,您可以在 TextBlock 上使用属性 xml:space="preserve"。
关于如何仅绑定 'TextBlock.Text' 字符串的一部分的任何想法。
例如:
我想添加 "Your name is {Binding Path=Name}" 并拥有 'OneWay Binding' 而无需使用另一个 'TextBlock' 控件。
将绑定中的文本放入运行中:
<TextBlock>
<Run>Your name is</Run>
<Run Text="{Binding Path=Name}"/>
</TextBlock>
在这种情况下,您可能 运行 遇到运行之间的空白问题。在这种情况下,您可以在 TextBlock 上使用属性 xml:space="preserve"。