例如,我有标签:
<Label Content="{Binding SiteName, StringFormat={}{0} | }" />
标签的内容应显示为:“A Site Name |”。但是,省略了空格,竖线也是如此。
如另一个资源中所述,我尝试使用克拉 ( ^
) 转义栏,但这没有用。有人知道怎么做这个吗?
使用 aTextBlock
而不是 aLabel
<TextBlock Text="{Binding SiteName, StringFormat={}{0} | }" />
(如果您想确保将空格考虑在内:
<TextBlock Text="{Binding SiteName, StringFormat='{}{0} | '}" />
或者,使用 的ContentStringFormat
属性Label
而不是StringFormat
。
<Label Content="{Binding SiteName}" ContentStringFormat="{}{0} | " />