嗨,我曾经使用过数据网格,但使用选项卡时速度太慢了,所以我切换到 ListView 但我不知道如何设置它的样式(在我看来,它比 DataGrid 复杂得多)。
所以我想知道如何为 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}"