当前位置:  开发笔记 > 编程语言 > 正文

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

如何解决《以编程方式为DataGrid中的行指定颜色》经验,为你挑选了2个好方法。

我需要为运行时添加到DataTable的行指定一种颜色.如何才能做到这一点?



1> Jeremy..:

您可以处理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中注册活动:


或者在C#中:

this.dataGrid.LoadingRow += new EventHandler(dataGrid_LoadingRow);



2> 小智..:

你可以试试这个

在XAML中




在datagrid中


                            
    


在代码中我有一个类

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

设置DataContext时

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

如果未设置行的颜色,则默认值为灰色

你可以试试这个样本

List test = new List();
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);

推荐阅读
ar_wen2402851455
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有