以编程方式为DataGrid中的行指定颜色

时间:2009-12-04 14:41:06

标签: wpf colors datagrid row

我需要为运行时添加到DataTable的行指定一种颜色。怎么办呢?

3 个答案:

答案 0 :(得分:36)

您可以处理DataGrid的LoadingRow事件以检测何时添加行。在事件处理程序中,您可以获得对DataTow的引用,该DataRow已添加到充当ItemsSource的DataTable中。然后你可以随意更新DataGridRow的颜色。

void dataGrid_LoadingRow(object sender, Microsoft.Windows.Controls.DataGridRowEventArgs e)
{
    // Get the DataRow corresponding to the DataGridRow that is loading.
    DataRowView item = e.Row.Item as DataRowView;
    if (item != null)
    {
        DataRow row = item.Row;

            // Access cell values values if needed...
            // var colValue = row["ColumnName1]";
            // var colValue2 = row["ColumName2]";

        // Set the background color of the DataGrid row based on whatever data you like from 
        // the row.
        e.Row.Background = new SolidColorBrush(Colors.BlanchedAlmond);
    }           
}

在XAML中注册活动:

<toolkit:DataGrid x:Name="dataGrid"
    ...
    LoadingRow="dataGrid_LoadingRow">

或者在C#中:

this.dataGrid.LoadingRow += new EventHandler<Microsoft.Windows.Controls.DataGridRowEventArgs>(dataGrid_LoadingRow);

答案 1 :(得分:10)

你可以试试这个

在XAML中

<Window.Resources>
<Style TargetType="{x:Type DataGridRow}">
    <Style.Setters>
        <Setter Property="Background" Value="{Binding Path=StatusColor}"></Setter>
    </Style.Setters>            
</Style>
</Window.Resources>

在datagrid中

<DataGrid AutoGenerateColumns="False" CanUserAddRows="False" Name="dtgTestColor" ItemsSource="{Binding}" >
<DataGrid.Columns>                            
    <DataGridTextColumn Header="Valor" Binding="{Binding Path=Valor}"/>
</DataGrid.Columns>
</DataGrid>

在代码中我有一个带

的类
public class ColorRenglon
{
    public string Valor { get; set; }
    public string StatusColor { get; set; }
}

设置DataContext

dtgTestColor.DataContext = ColorRenglon;
dtgTestColor.Items.Refresh();

如果你没有设置行的颜色,则默认值为Gray

你可以尝试这个样本 使用此示例

List<ColorRenglon> test = new List<ColorRenglon>();
ColorRenglon cambiandoColor = new ColorRenglon();
cambiandoColor.Valor = "Aqui va un color"; 
cambiandoColor.StatusColor = "Red";
test.Add(cambiandoColor);
cambiandoColor = new ColorRenglon();
cambiandoColor.Valor = "Aqui va otro color"; 
cambiandoColor.StatusColor = "PaleGreen";
test.Add(cambiandoColor);

答案 2 :(得分:1)

重要:请务必始终为未按条件着色的行或任何其他样式指定默认值。

请参阅我对C# Silverlight Datagrid - Row Color Change的回答。

PS。我在Silverlight中并且未在WPF中确认此行为