更改列表框中数据绑定文本块的前景色

时间:2014-02-14 14:16:42

标签: c# data-binding windows-phone-8 listbox foreground

我正在尝试根据绑定值更改TextBlock中数据绑定ListBox的前景色。

我的代码如下:xaml

<Grid.Resources>
   <converters:ColorConverter x:Key="ColorConverter"/>
</Grid.Resources>


<ListBox>
    <ListBox.ItemTemplate>
        <DataTemplate>
            <TextBlock Name="TitleText">
                <Run Foreground="{Binding Type, Converter={StaticResource ColorConverter}}" Text="&#x20b9;" />
            </TextBlock>
        </DataTemplate>
    </ListBox.ItemTemplate>
</ListBox>

ColorConverter类:

public class ColorConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
    {
        if (value != null)
        {
             String Value = (String)value;

             if (Value.Equals("Credit"))
                return Colors.Green;
            else
                return Colors.Red;

        }

        return null;
    }

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

当我运行代码时,没有错误,但颜色不会改变。

1 个答案:

答案 0 :(得分:2)

前景采用刷子而不是颜色。试试这个:

<Run Text="...">
    <Run.Foreground>
        <SolidColorBrush Color="{Binding Type, Converter={StaticResource ColorConverter}}"/>
    </Run.Foreground>
</Run>