绑定System.Windows.Media.Color到TextBlock.Foreground?

时间:2011-03-24 18:24:36

标签: c# .net wpf xaml colors

当我这样做时,我得到:

  

“无法创建默认转换器   执行“单向”转换   类型'System.Windows.Media.Color'和   'System.Windows.Media.Brush'。考虑   使用Binding的Converter属性。“

任何人都知道如何做到这一点?

为什么WPF无法自动转换,因为我使用的是WPF颜色,而不是System.Drawing.Color。

编辑:

Xaml代码:

<GridViewColumn Width="120" Header="Info">
    <GridViewColumn.CellTemplate>
        <DataTemplate>
            <TextBlock HorizontalAlignment="Center" Text="{Binding Info, Mode=OneWay}" Foreground="{Binding MessageColor, Mode=OneWay}"/>
        </DataTemplate>
    </GridViewColumn.CellTemplate>
</GridViewColumn>

1 个答案:

答案 0 :(得分:7)

Brush类型的默认TypeConverter不支持Color(甚至是WPF版本)。它只支持转换为字符串/从字符串转换。

您必须创建一个自定义IValueConverter,它接受一个Color并返回一个SolidColorBrush。

public class ColorToBrushConverter : IValueConverter {

    public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) {
        if (!(value is Color))
            throw new InvalidOperationException("Value must be a Color");
        return new SolidColorBrush((Color)value);
    }

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

}