zoukankan      html  css  js  c++  java
  • DEV GridControl绑定的数据,ID相同的行显示相同的颜色(当可以确定ID的值时)

    public BindingList<StudentDC> StudentList
    {
    get { return this.bindingSourceList.DataSource as BindingList<StudentDC>; }
    set { bindingSourceList.DataSource = value; }
    }

    private void FrmGridTest_Load(object sender, System.EventArgs e)
    {
    StudentList = GetStudentList();


    }

    private BindingList<StudentDC> GetStudentList()
    {
    BindingList<StudentDC> list = new BindingList<StudentDC>(){
    new StudentDC(){Class = "Class 1",ID = 1,Name = "zhangsan"},
    new StudentDC(){Class = "Class 1",ID = 1,Name = "zhangsan"},
    new StudentDC(){Class = "Class 2",ID = 2,Name = "lisi"},
    new StudentDC(){Class = "Class 3",ID = 3,Name = "wangwu"},
    new StudentDC(){Class = "Class 3",ID = 3,Name = "wangwu"},
    new StudentDC(){Class = "Class 3",ID = 3,Name = "wangwu"}
    };

    return list;
    }

    private void gridView1_CustomDrawCell(object sender, DevExpress.XtraGrid.Views.Base.RowCellCustomDrawEventArgs e)
    {
    var tmpList = GetStudentList();
    var idList = (from item in tmpList select item.ID).ToList();
    idList = new List<int>(idList.Distinct());
    var tmp = gridView1.GetRowCellValue(e.RowHandle, "ID");
    if (gridView1.GetRow(e.RowHandle) == null)
    {
    return;
    }

    for (int i = 0; i < idList.Count; i++)
    {
    if (Convert.ToInt32(gridView1.GetRowCellValue(e.RowHandle, "ID")) == 1)
    {
    e.Appearance.BackColor = Color.Bisque;
    }

    if (Convert.ToInt32(gridView1.GetRowCellValue(e.RowHandle, "ID")) == 2)
    {
    e.Appearance.BackColor = Color.CornflowerBlue;
    }

    if (Convert.ToInt32(gridView1.GetRowCellValue(e.RowHandle, "ID")) == 3)
    {
    e.Appearance.BackColor = Color.SkyBlue;
    }

    }
    }

  • 相关阅读:
    C#yield return用法示例
    C#多线程示例
    AspNetCore.Authentication
    C#委托与事件
    按值和按引用传递参数
    基于iView的无限级菜单
    Sortable By Attribute
    未能加载文件或程序集“BLL”或它的某一个依赖项。生成此程序集的运行时比当前加载的运行时新,无法加载此程序集。
    有关导出Excel特殊字符的问题
    openFileDialog的使用
  • 原文地址:https://www.cnblogs.com/ShaYeBlog/p/2607449.html
Copyright © 2011-2022 走看看