DataGrid行背景色MVVM

本文关键字:MVVM 背景色 DataGrid | 更新日期: 2023-09-27 18:00:25

我使用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模式呢?

DataGrid行背景色MVVM

我假设您的DataGrids ItemsSource绑定到Log4NetLog的集合,因此您可以在xaml:中进行样式设置

        <DataGrid.ItemContainerStyle>
            <Style TargetType="{x:Type DataGridRow}">
                <Setter Property="Background" Value="{Binding Path=LogColour.Colour}"/>
            </Style>
        </DataGrid.ItemContainerStyle>

也许你需要一个颜色到SolidColorBrush转换器。