0

我有一个为空字符串提供默认值的转换器。显然,您无法向 ConverterParameter 添加绑定,因此我向转换器添加了一个属性,而是将其绑定到该转换器。

但是,我为默认属性返回的值是“System.Windows.Data.Binding”字符串,而不是我的值。

如何在代码中解决此绑定问题,以便返回所需的真正本地化字符串?

这是我的转换器类(基于答案https://stackoverflow.com/a/15567799/250254):

public class DefaultForNullOrWhiteSpaceStringConverter : IValueConverter
{
    public object Default { set; get; }

    public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        if (!string.IsNullOrWhiteSpace((string)value))
        {
            return value;
        }
        else
        {
            if (parameter != null)
            {
                return parameter;
            }
            else
            {
                return this.Default;
            }
        }
    }

    public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
    {
        throw new NotSupportedException();
    }

}

还有我的 XAML:

<phone:PhoneApplicationPage.Resources>
    <tc:DefaultForNullOrWhiteSpaceStringConverter x:Key="WaypointNameConverter"
        Default="{Binding Path=LocalizedResources.Waypoint_NoName, Mode=OneTime, Source={StaticResource LocalizedStrings}}" />
</phone:PhoneApplicationPage.Resources>

<TextBlock Text="{Binding Name, Converter={StaticResource WaypointNameConverter}}" />

有任何想法吗?

4

2 回答 2

1

您应该能够通过从DependencyObject继承并将您的Default属性更改为DependencyProperty来完成此操作。

public class DefaultForNullOrWhiteSpaceStringConverter : DependencyObject, IValueConverter
{
    public string DefaultValue
    {
        get { return (string)GetValue(DefaultValueProperty); }
        set { SetValue(DefaultValueProperty, value); }
    }

    // Using a DependencyProperty as the backing store for DefaultValue.  This enables animation, styling, binding, etc...
    public static readonly DependencyProperty DefaultValueProperty =
        DependencyProperty.Register("DefaultValue", typeof(string), 
        typeof(DefaultForNullOrWhiteSpaceStringConverter), new PropertyMetadata(null));
...
...
于 2013-06-21T06:56:34.993 回答
0

现在我已经通过从我的转换器继承并在构造函数中设置本地化字符串解决了这个问题。但是,我觉得必须有一个更优雅的解决方案来解决我的问题,允许直接使用基本转换器。

public class WaypointNameConverter : DefaultForNullOrWhiteSpaceStringConverter
{
    public WaypointNameConverter()
    {
        base.Default = Resources.AppResources.Waypoint_NoName;
    }
}
于 2013-06-21T04:10:15.673 回答