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

最佳答案

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

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

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

10-07 19:23