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

发布于 2024-10-27 00:07:16 字数 675 浏览 0 评论 0原文

当我这样做时,我得到:

“无法创建默认转换器 在之间执行“单向”转换 类型“System.Windows.Media.Color”和 '系统.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>

When I do this I get:

"Cannot create default converter to
perform 'one-way' conversions between
types 'System.Windows.Media.Color' and
'System.Windows.Media.Brush'. Consider
using Converter property of Binding."

Anyone knows how to do this?

Why can't WPF convert this automatically as I am using WPF colors, not System.Drawing.Color.

EDIT:

Xaml code:

<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>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

¢蛋碎的人ぎ生 2024-11-03 00:07:16

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();
    }

}

The default TypeConverter for the Brush type, does not support Color (even the WPF version). It only supports converting to/from strings.

You would have to create a custom IValueConverter that takes a Color and returns a 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();
    }

}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文