我正在尝试根据绑定值更改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="₹" />
</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();
}
}
当我运行代码时,没有错误,但颜色不会改变。
答案 0 :(得分:2)
前景采用刷子而不是颜色。试试这个:
<Run Text="...">
<Run.Foreground>
<SolidColorBrush Color="{Binding Type, Converter={StaticResource ColorConverter}}"/>
</Run.Foreground>
</Run>