您好我曾经使用过数据网格,但是在使用标签时它太慢了,所以我切换到了ListView,但我不知道如何设置样式,(在我看来,它比DataGrid复杂得多)。 / p>
所以我想知道如何为ListView做这个:
<Style x:Key="gridCell" TargetType="DataGridCell">
<Setter Property="BorderBrush"
Value="{StaticResource lightBlueBrush}" />
<Style.Triggers>
<DataTrigger Binding="{Binding Path=Status}" Value="Otpisano">
<Setter Property="Background" Value="Red"/>
</DataTrigger>
</Style.Triggers>
</Style>
然后在视图中
CellStyle="{StaticResource gridCell}"