我有一個GridControl:如何爲DevExpress WPF GridControl行着色?
<dxg:GridControl Name="grd" Height="270">
<dxg:GridControl.Columns>
<dxg:GridColumn Header="Id" FieldName="Id" AllowEditing="True" Width="30"/>
<dxg:GridColumn Header="Name" FieldName="Name" AllowEditing="False" />
<dxg:GridColumn Header="SurName" FieldName="SurName" AllowEditing="False" />
<dxg:GridColumn Header="Age" FieldName="Age" CellStyle="{StaticResource customCellStyle}" AllowEditing="False" />
<dxg:GridColumn Header="Income" FieldName="Income" AllowEditing="False" />
<dxg:GridColumn Header="Dept" FieldName="Dept" AllowEditing="False" />
</dxg:GridControl.Columns>
</dxg:GridControl>
我已被結合的ItemSource =列表。但我想,如果着色
年齡< = 0或收入< 0或部門< = 0(行上色結合數據後紅)
我該怎麼辦呢?
我不熟悉devexpress GridControl。 GridControl中是否存在RowStyle依賴項屬性?你有這個控件綁定的ItemsSource嗎?如果是這樣,每個行的viewModel會有年齡,收入和Dept嗎? – Sisyphe