如何在WPF绑定控件中使用常量文本实现混合绑定值?
例如,假设我有一个显示订单的表单,我想要一个显示“订单ID 1234”等文本的标签。
我尝试过这样的事情:
text="Order ID {Binding ....}"
这是可以实现的,还是我必须做一些像流量控制中有多个标签的事情?
答案 0 :(得分:50)
Binding.StringFormat属性不适用于标签,您需要在Label上使用ContentStringFormat属性。
例如,以下示例将起作用:
<Label Grid.Row="0" Name="TitleLabel">
<Label.Content>
<Binding Path="QuestionnaireName"/>
</Label.Content>
<Label.ContentStringFormat>
Thank you for taking the {0} questionnaire
</Label.ContentStringFormat>
</Label>
虽然这个样本不会:
<Label Grid.Row="0" Name="TitleLabel">
<Label.Content>
<Binding Path="QuestionnaireName" StringFormat="Thank you for taking the {0} questionnaire"/>
</Label.Content>
</Label>
答案 1 :(得分:23)
如果您使用的是3.5 SP1,则可以在绑定上使用StringFormat
属性:
<Label Content="{Binding Order.ID, StringFormat=Order ID \{0\}}"/>
否则,请使用转换器:
<local:StringFormatConverter x:Key="StringFormatter" StringFormat="Order ID {0}" />
<Label Content="{Binding Order.ID, Converter=StringFormatter}"/>
StringFormatConverter
为IValueConverter
:
[ValueConversion(typeof(object), typeof(string))]
public class StringFormatConverter : IValueConverter
{
public string StringFormat { get; set; }
public object Convert(object value, Type targetType,
object parameter, CultureInfo culture) {
if (string.IsNullOrEmpty(StringFormat)) return "";
return string.Format(StringFormat, value);
}
public object ConvertBack(object value, Type targetType,
object parameter, CultureInfo culture)
{
throw new NotSupportedException();
}
那就行了。
[修改:将Text
属性更改为Content
]
答案 2 :(得分:5)
经常被忽视的只是将多个文本块链接在一起,例如
<TextBlock Text="{Binding FirstName}" />
<TextBlock Text=" " />
<TextBlock Text="{Binding LastName}" />
答案 3 :(得分:4)
另一种方法是使用单个TextBlock,其中包含多个Run元素:
<TextBlock><Run>Hello</Run><Run>World</Run></TextBlock>
..但要绑定到您需要使用的元素,请添加BindableRun类。
更新但此技术存在一些缺点...请参阅here
答案 4 :(得分:3)
我发现了另一种方法。 @ Inferis的解决方案对我不起作用,@ LPCRoy对我来说不优雅:
<Label Content="{Binding Path=Order.ID, FallbackValue=Placeholder}" ContentStringFormat="Order ID {0}">
这是我最喜欢的时刻,它似乎是灵活而浓缩的。
答案 5 :(得分:0)
修改了Mikolaj的答案。
<Label Content="{Binding Order.ID}" ContentStringFormat="Order ID {0}" />
FallbackValue不是必须的。