假设我有一个静态文本资源
public static string MainText = "Test: {0} Test2: {1}";
然后我想在WPF中使用这个文本
<Label Content="x:Static ***.MainText" />
但是将两个值绑定到它,我该怎么做?
答案 0 :(得分:2)
以下是两种方法,一种是转换器,一种是转换器。
&#34;文本1&#34;和&#34; Text2&#34;在绑定中是DataContext的属性。
您需要更改&#34; MainText&#34;成为一个财产:
public static string MainText { get; set; } = "Test: {0} Test2: {1}";
没有转换器:
<Label>
<Label.Content>
<TextBlock>
<TextBlock.Text>
<MultiBinding StringFormat="{x:Static local:MainWindow.MainText}">
<Binding Path="Text1" />
<Binding Path="Text2" />
</MultiBinding>
</TextBlock.Text>
</TextBlock>
</Label.Content>
</Label>
使用转换器:
<Label>
<Label.Resources>
<local:TextFormatConverter x:Key="TextFormatConverter" />
</Label.Resources>
<Label.Content>
<MultiBinding Converter="{StaticResource TextFormatConverter}" ConverterParameter="{x:Static local:MainWindow.MainText}">
<Binding Path="Text1" />
<Binding Path="Text2" />
</MultiBinding>
</Label.Content>
</Label>
转换器:
public class TextFormatConverter : IMultiValueConverter
{
public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
{
string fmt = parameter as string;
if (!string.IsNullOrWhiteSpace(fmt))
return string.Format(fmt, values);
return null;
}
public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}