绑定到DataGridView - 有没有办法“绑定”单元格的背景颜色?

时间:2008-12-03 22:11:39

标签: .net winforms data-binding datagridview

我将List绑定到DataGridView。 SomeObject类的一个属性是状态代码(例如Red,Yellow,Green)。我可以轻松地将状态“绑定”到单元格的背景颜色吗?如何绑定到工具提示呢?

2 个答案:

答案 0 :(得分:35)

您可以为DataGridView的CellFormatting事件编写处理程序以自定义背景颜色。这是一个有用的示例(您需要将DataGridView拖到默认窗体上,然后双击CellFormatting事件以创建处理程序):

using System.Drawing;
using System.Windows.Forms;

namespace WindowsFormsApplication1
{
    public partial class Form1 : Form
    {
        private BindingSource _source = new BindingSource();

        public Form1()
        {
            InitializeComponent();

            _source.Add(new MyData(Status.Amber, "Item A"));
            _source.Add(new MyData(Status.Red, "Item B"));
            _source.Add(new MyData(Status.Green, "Item C"));
            _source.Add(new MyData(Status.Green, "Item D"));

            dataGridView1.DataSource = _source;
            dataGridView1.Columns[0].Visible = false;
        }

        private void dataGridView1_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
        {
            if (e.ColumnIndex == 1)
            {
                DataGridView dgv = sender as DataGridView;
                MyData data = dgv.Rows[e.RowIndex].DataBoundItem as MyData;

                switch (data.Status)
                {
                    case Status.Green:
                        e.CellStyle.BackColor = Color.Green;
                        break;
                    case Status.Amber:
                        e.CellStyle.BackColor = Color.Orange;
                        break;
                    case Status.Red:
                        e.CellStyle.BackColor = Color.Red;
                        break;
                }
            }
        }
    }

    public class MyData
    {
        public Status Status { get; set; }
        public string Text { get; set; }

        public MyData(Status status, string text)
        {
            Status = status;
            Text = text;
        }
    }

    public enum Status
    {
        Green,
        Amber,
        Red
    }
}

为简单起见,这里的对象只有状态和文本。我为这些对象的一组示例创建了一个BindingSource,然后将其用作DataGridView的数据源。默认情况下,网格会在您绑定时自动生成列,因此无需手动执行此操作。我还隐藏了第一列,它绑定到Status值,因为我们将改为为Text单元着色。

要实际进行绘画,我们会回应CellFormatting事件。我们通过转换发送者来获取对DataGridView的引用,然后使用DataGridViewCellFormattingEventArgs对象的RowIndex属性来获取数据项iteself(每个Row都有一个DataBoundItem属性,方便地给我们这个)。由于DataBoundItem是一个对象类型,我们需要将它强制转换为我们的特定类型,然后我们实际上可以转到Status属性本身...... phew!

我没有任何工具提示编程的经验,但我认为你应该回应MouseHover事件,然后继续发现指向哪一行开始。

我希望这会有所帮助。

答案 1 :(得分:2)

开箱即用,任何DataGridViewColumn都只能绑定到DataSource中对象的一个​​属性,属性的名称由每个DataGridViewColumn的DataPropertyName给出(您将拥有特定的列类型,如:DataGridViewTextBoxColumn ,. ..)。

您可以使用DataGridView.CellFormatting事件根据数据绑定项更改单元格的样式。在此事件的DataGridViewCellFormattingEventArgs中,您将获得行索引,从那里您可以获取当前对象(行的源)。从那里,您可以使用对象的任何属性来影响您的单元格。

一个很好的起点(类似的想法):here

第二个想法是开发自己的DataGridViewColumn类型,并为需要绑定的其他东西添加属性。例如,与内置DataPropertyName的方式相同,您可以添加自己的:BackgroundColorPropertyName。可以找到构建自定义DataGridViewColumns的起点here