在转换器中使用资源

时间:2013-10-01 08:57:29

标签: c# xaml windows-phone-8 windows-phone

我需要根据某些条件将画笔设置为红色或橙色,如果没有条件满足,则需要回退到默认画笔。

如果Windows手机有样式触发器,这将是微不足道的,但事实并非如此,我必须为每个场景创建一个特殊用途的转换器,如下所示:

public class StatusToColorConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
    {
        var status = (Status)value;
        if (status.IsCancelled)
        {
            return new SolidColorBrush(Colors.Red);
        }
        else if (status.IsDelayed)
        {
            return new SolidColorBrush(Colors.Orange);
        }
        else 
        {
            return parameter;
        }
    }
}

并像这样使用它:

<TextBlock Foreground="{Binding Status, 
                                Converter={StaticResource statusToColorConverter},
                                ConverterParameter={StaticResource PhoneForegroundBrush}}" />

但现在我需要一个根据条件返回PhoneForegroundBrushPhoneDisabledBrush的转换器。

我无法传递两个参数,Windows手机也不支持MultiBindings。我虽然如此:

<TextBlock Foreground="{Binding Status, 
                                Converter={StaticResource statusToColorConverter},
                                ConverterParameter={Binding RelativeSource={RelativeSource Self}}

所以我可以在参数中获取文本块然后用它来查找资源,但它也不起作用。

有什么想法吗?

1 个答案:

答案 0 :(得分:6)

您可以直接将转换器声明为转换器上的属性:

public class StatusToColorConverter : IValueConverter
{
    public Brush CancelledBrush { get; set; }
    public Brush DelayedBrush { get; set; }

    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
    {
        var status = (Status)value;

        if (status.IsCancelled)
        {
            return this.CancelledBrush;
        }

        if (status.IsDelayed)
        {
            return this.DelayedBrush;
        }

        return parameter;
    }

    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
    {
        throw new NotImplementedException();
    }
}

然后,在初始化转换器时从XAML填充它们:

<my:StatusToColorConverter x:Key="StatusToColorConverter" CancelledBrush="{StaticResource CancelledBrush}" DelayedBrush="{StaticResource DelayedBrush}" />