我想知道是否可以在ListView中的文本块上创建条件。我解释一下:
我有一个包含一些数据的模型,这个模型中有一个“数量”。如果金额是负数,我想把前景设为红色,如果是正数,我想把前景设为绿色。
<TextBlock RelativePanel.AlignRightWithPanel="True"
Foreground="Red"
FontWeight="Bold">
<Run Text="{Binding Amount}" />
<Run Text="€" />
</TextBlock>
这是文本块,他在ListView.ItemTemplate中。
此致
安东尼
答案 0 :(得分:2)
您应该使用转换器。创建一个派生自AmountColorConverter
。
IValueConverter
)
public object Convert(object value, ...)
{
var val = (double)value;
return val >= 0
? Colors.Green
: Colors.Red;
}
实现后,在XAML中创建转换器的实例并在绑定中引用它:
<converter:AmountColorConverter x:Key="AmountColorConverter"/>
<TextBlock RelativePanel.AlignRightWithPanel="True"
Foreground="{Binding Amount, Converter={StaticResource AmountColorConverter}}"
FontWeight="Bold">
<Run Text="{Binding Amount}" />
<Run Text="€" />
</TextBlock>
答案 1 :(得分:0)
我已经尝试过了。 他是我的xaml代码:
<TextBlock HorizontalAlignment="Right"
Grid.Column="2"
Grid.Row="0"
Foreground="{Binding Amount, Mode=TwoWay, Converter={StaticResource ForegroundColorAmount}}"
FontWeight="Medium">
<Run Text="{Binding Amount}" Foreground="{Binding Amount, Mode=TwoWay, Converter={StaticResource ForegroundColorAmount}}" />
<Run Text="€" />
当然我使用了使用:
xmlns:converters="using:Sample.Converters"
这是我的转换器类:
public class ForegroundColorAmount : IValueConverter
{
public object Convert(object value, Type targetType, object parameter, string language)
{
var val = (double)value;
if (val >= 0)
{
return Colors.Green;
}
else
{
return Colors.Red;
}
}
public object ConvertBack(object value, Type targetType, object parameter, string language)
{
throw new NotImplementedException();
}
}
感谢&#39; S
安东尼