2

例如,我有标签:

<Label Content="{Binding SiteName, StringFormat={}{0}   |  }" />

标签的内容应显示为:“A Site Name |”。但是,省略了空格,竖线也是如此。

如另一个资源中所述,我尝试使用克拉 ( ^) 转义栏,但这没有用。有人知道怎么做这个吗?

4

1 回答 1

2

使用 aTextBlock而不是 aLabel

<TextBlock Text="{Binding SiteName, StringFormat={}{0}   |  }" />

(如果您想确保将空格考虑在内:

<TextBlock Text="{Binding SiteName, StringFormat='{}{0}   |  '}" />

或者,使用 的ContentStringFormat属性Label而不是StringFormat

<Label Content="{Binding SiteName}" ContentStringFormat="{}{0}   |  " />
于 2013-01-27T20:51:02.907 回答