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"},
    new StudentDC(){Class = "Class 3",ID = 4,Name = "wangwu"},
    new StudentDC(){Class = "Class 3",ID = 4,Name = "wangwu"},
    new StudentDC(){Class = "Class 3",ID = 5,Name = "wangwu"},
    new StudentDC(){Class = "Class 3",ID = 6,Name = "wangwu"},
    new StudentDC(){Class = "Class 3",ID = 6,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 < tmpList.Count; i++)
    {
    if (Convert.ToInt32(gridView1.GetRowCellValue(e.RowHandle, "ID")) % 3 == 1)
    {
    e.Appearance.BackColor = Color.Bisque;
    }

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

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

    }

  • 相关阅读:
    巨杉数据库多活架构实践
    云数据库架构演进与实践
    语言入门必学的基础知识你还记得么?
    ASP.NET MVC不可或缺的部分——DI及其本质工作分析
    python JoinableQueue在生产者消费者项目中的简单应用
    asp.net core中写入自定义中间件
    终结python协程----从yield到actor模型的实现
    项目开发中使用并发模型常见问题的整理与思考
    LeetCode刷题之合并排序链表
    python学习笔记
  • 原文地址:https://www.cnblogs.com/ShaYeBlog/p/2608056.html
Copyright © 2011-2022 走看看