2

我使用 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模型中的 a 。

那么如何更改代码以适应 MVVM 模式呢?

4

1 回答 1

2

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

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

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

于 2013-02-21T08:35:21.900 回答