在DataGridView中更改Button的颜色

时间:2016-10-27 07:10:58

标签: c# .net winforms datagridview datagridviewbuttoncolumn

我已经搜索了这个问题的答案。这篇文章的答案:Change Color of Button in DataGridView Cell没有回答我的问题,因为它涉及字体。

我尝试了以下内容:

DataGridViewRow r = dataGridView.Rows[0];
r.Cells[1].Style.BackColor = Color.Red;

我也尝试过:

DataGridViewButtonColumn btnCOl = new DataGridViewButtonColumn();
btnCOl.FlatStyle = FlatStyle.Popup;
DataGridViewRow r = dataGridView.Rows[0];
r.Cells[1].Style = new DataGridViewCellStyle { BackColor = Color.LightBlue };

仍无济于事。

我也注意到这一行:

// Application.EnableVisualStyles();

如果有人知道如何更改DataGridViewButtonColumn中单个按钮的背景颜色,请提供帮助。

修改 我想为列中的单元格设置不同的颜色,例如有些会变红,有些会变绿。我不想为整列设置颜色。

2 个答案:

答案 0 :(得分:3)

更改整个列的BackColor

作为一个选项,您可以将DataGridViewButtonColumn的{​​{3}}属性设置为Flat,并将其Style.BackColor设置为您想要的颜色:

var C1 = new DataGridViewButtonColumn() { Name = "C1" };
C1.FlatStyle = FlatStyle.Flat;
C1.DefaultCellStyle.BackColor = Color.Red;

更改单个单元格的BackColor

如果要为不同的单元格设置不同的颜色,在将FlatStyle列或单元格设置为Flat之后,只需将不同单元格的Style.BackColor设置为不同颜色:

var cell = ((DataGridViewButtonCell)dataGridView1.Rows[1].Cells[0]);
cell.FlatStyle =  FlatStyle.Flat;
dataGridView1.Rows[1].Cells[0].Style.BackColor = Color.Green;

如果要有条件地更改单元格的背面颜色,可以根据单元格值在CellFormatting事件中执行此操作。

注意

如果您更喜欢Button的标准外观而不是平面样式,则可以处理CellPaint事件:

void dataGridView1_CellPainting(object sender, DataGridViewCellPaintingEventArgs e)
{
    if (e.RowIndex < 0 || e.ColumnIndex < 0)
        return;
    if (e.ColumnIndex == 0) // Also you can check for specific row by e.RowIndex
    {
        e.Paint(e.CellBounds, DataGridViewPaintParts.All
            & ~( DataGridViewPaintParts.ContentForeground));
        var r = e.CellBounds;
        r.Inflate(-4, -4);
        e.Graphics.FillRectangle(Brushes.Red, r);
        e.Paint(e.CellBounds, DataGridViewPaintParts.ContentForeground);
        e.Handled = true;
    }
}

答案 1 :(得分:3)

试试这个

DataGridViewButtonCell bc = new DataGridViewButtonCell();
bc.FlatStyle = FlatStyle.Flat;
bc.Style.BackColor = Color.AliceBlue;

您可以将此单元格指定给您需要的行

这是一个小例子,其中 DataGridView dgvSample 已经在表单中插入

for (int i = 0; i <= 10; i++)
{
    DataGridViewRow fr = new DataGridViewRow();
    fr.CreateCells(dgvSample);

    DataGridViewButtonCell bc = new DataGridViewButtonCell();
    bc.FlatStyle = FlatStyle.Flat;

    if (i % 2 == 0)
    {
        bc.Style.BackColor = Color.Red;
    }   
    else
    {
        bc.Style.BackColor = Color.Green;
    }

    fr.Cells[0] = bc;
    dgvSample.Rows.Add(fr);
}