我有包含 5 个对象的 ObservableCollection。我可以在 xaml 中为整个集合设置颜色、背景等,如下所示:
<GridView.ItemTemplate>
<DataTemplate>
<Grid Width="200">
<Rectangle Width="auto" Fill="#333333" />
<TextBlock Text="{Binding}" Foreground="#fff" FontSize="80" FontFamily="Verdana" FontWeight="Bold" VerticalAlignment="Center" HorizontalAlignment="Center" />
</Grid>
</DataTemplate>
</GridView.ItemTemplate>
但这会影响此集合中的每个对象。如何设置不同的颜色,例如最后一个对象?