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

(DataGridView + Binding)如何根据绑定的对象来着色线?

如何解决《(DataGridView+Binding)如何根据绑定的对象来着色线?》经验,为你挑选了1个好方法。

我想根据绑定对象的属性为特定行添加背景颜色.

我有(并且它有效)的解决方案是使用事件,DataBindingComplete但我不认为这是最好的解决方案.

这是事件:

    private void myGrid_DataBindingComplete(object sender, DataGridViewBindingCompleteEventArgs e)
    {

        for (int i = 0; i < this.myGrid.Rows.Count; i++)
        {
            if((this.myGrid.Rows[i].DataBoundItem as MyObject).Special)
            {
                this.myGrid.Rows[i].DefaultCellStyle.BackColor = Color.FromArgb(240, 128, 128);
            }
        }
    }

还有其他更好的选择吗?



1> Juanma..:

您还可以将事件处理程序附加到RowPostPaint:

dataGridView1.RowPostPaint += OnRowPostPaint;

void OnRowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e)
{
    MyObject value = (MyObject) dataGridView1.Rows[e.RowIndex].DataBoundItem;
    DataGridViewCellStyle style = dataGridView1.Rows[e.RowIndex].DefaultCellStyle;

    // Do whatever you want with style and value
    ....
}

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