我正在使用MVVM架构,我想更改数据网格中的行颜色。 行的颜色取决于模型中的项目。
到目前为止,我有这个代码:
private void DataGrid_LoadingRow(object sender, DataGridRowEventArgs e) {
Log4NetLog dataGridRow = e.Row.DataContext as Log4NetLog;
if (highlight) {
if (dataGridRow != null) {
e.Row.Background = new SolidColorBrush(
dataGridRow.LogColour.Colour);
}
} else {
e.Row.Background = new SolidColorBrush(Colors.White);
}
}
如您所见,在第二行中,我必须引用模型中的Log4NetLog
。
那么如何更改代码以适应MVVM模式?
答案 0 :(得分:2)
我假设您的DataGrids ItemsSource绑定到Log4NetLog的集合,因此您可以在xaml中进行样式设置:
<DataGrid.ItemContainerStyle>
<Style TargetType="{x:Type DataGridRow}">
<Setter Property="Background" Value="{Binding Path=LogColour.Colour}"/>
</Style>
</DataGrid.ItemContainerStyle>
也许你需要一个Color to SolidColorBrush Converter。