如果绑定字符串为空,是否有标准方法为WPF绑定设置默认值或回退值?
<TextBlock Text="{Binding Name, FallbackValue='Unnamed'" />
FallbackValue
仅在Name
为空时启动,但在设置为String.Empty
时则不会启用。
答案 0 :(得分:66)
DataTrigger
是我这样做的方式:
<TextBox>
<TextBox.Style>
<Style TargetType="{x:Type TextBox}" BasedOn="{StaticResource ReadOnlyTextBox}">
<Setter Property="Text" Value="{Binding Name}"/>
<Style.Triggers>
<DataTrigger Binding="{Binding Path=Name.Length, FallbackValue=0, TargetNullValue=0}" Value="0">
<Setter Property="Text" Value="{x:Static local:ApplicationLabels.NoValueMessage}"/>
</DataTrigger>
</Style.Triggers>
</Style>
</TextBox.Style>
</TextBox>
答案 1 :(得分:34)
我的印象是FallbackValue在绑定失败时提供值,TargetNullValue在绑定值为null时提供值。
要做你想做的事,你需要一个转换器(可能带参数)将空字符串转换为目标值,或者将逻辑放在视图模型中。
我可能会使用这样的转换器(未经测试)。
public class EmptyStringConverter : MarkupExtension, IValueConverter
{
public object Convert(object value, Type targetType,
object parameter, CultureInfo culture)
{
return string.IsNullOrEmpty(value as string) ? parameter : value;
}
public object ConvertBack(object value, Type targetType,
object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
public override object ProvideValue(IServiceProvider serviceProvider)
{
return this;
}
}
答案 2 :(得分:7)
您应该为此创建一个转换器,它实现IValueConverter
public class StringEmptyConverter : IValueConverter {
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) {
return string.IsNullOrEmpty((string)value) ? parameter : value;
}
public object ConvertBack(
object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) {
throw new NotSupportedException();
}
}
然后在xaml中你只是将转换器提供给绑定,(xxx
只代表你的Window
/ UserControl
/ Style
...其中绑定是)
<xxx.Resources>
<local:StringEmptyConverter x:Key="StringEmptyConverter" />
</xxx.Resources>
<TextBlock Text="{Binding Name, Converter={StaticResource StringEmptyConverter}, ConverterParameter='Placeholder Text'}" />
答案 3 :(得分:0)
您可以使用转换器并对其进行相应的验证。
Binding="{Binding Path=Name, Converter={StaticResource nameToOtherNameConverter}}"
并在您的转换器中
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
if (!string.IsNullOrEmpty(value.ToString()))
{ /*do something and return your new value*/ }