我想在DataGridViewCell的中心画一个小的实心圆。矩形也可以解决问题。我假设我必须在CellPainting事件中执行此操作。

我已经试过了:

if (e.RowIndex >= 0 && e.ColumnIndex >= 0)
        {
            if (dgv_Cuotas.Columns[e.ColumnIndex].Name == "Seleccionar" && Convert.ToBoolean(dgv_Cuotas.Rows[e.RowIndex].Cells["pagada"].Value) == true)
            {
                e.CellStyle.BackColor = Color.LightGray; ;
                e.PaintBackground(e.ClipBounds, true);
                e.Handled = true;
            }
        }

它画了整个单元格,我只需要一个小圆圈或矩形,如下图所示:

我怎样才能做到这一点?不能使用DataGridViewImageCell,因为我遇到格式化错误。我只是可以将DataGridViewCheckBoxCell更改为DataGridViewTextboxCell。

编辑:
我可以将其更改为DataGridViewImageCell!不知道以前发生了什么,但我仍然无法在该处加载图像。我只是得到一个带有红叉的白色正方形(无图像图标)。这是我的代码:
dgv_Cuotas.Rows[row.Index].Cells["Seleccionar"] = new DataGridViewImageCell();
dgv_Cuotas.Rows[row.Index].Cells["Seleccionar"].Value = Properties.Resources.punto_verde;
dgv_Cuotas.Rows[row.Index].Cells["Seleccionar"].Style.ForeColor = Color.White;
dgv_Cuotas.Rows[row.Index].Cells["Seleccionar"].Style.SelectionForeColor = Color.White;

最佳答案

感谢您的提问和回答@Andres。

请看我的回复:
(例如)我有一个带有2列的datagridview。在第一列中,我想在第2列中显示一个色环,该色环的颜色为write(颜色名称)。为此,我的代码是:

for (int i = 1; i <= 5; i++)
    Dgv.Rows.Add();
Dgv[1, 0].Value = "Red";
Dgv[1, 1].Value = "Blue";
Dgv[1, 2].Value = "Yellow";
Dgv[1, 3].Value = "Green";
Dgv[1, 4].Value = "Black";

为了创建一个圆圈,我编写了此类代码:
public static class GraphicsExtensions
{
    public static void FillCircle(this Graphics g, Brush brush, float centerX, float centerY, float radius)
    {
        g.FillEllipse(brush, centerX - radius, centerY - radius, radius + radius, radius + radius);
    }
}

在我的datagridview的CellPainting事件中,编写以下代码:
private void Dgv_CellPainting(object sender, DataGridViewCellPaintingEventArgs e)
{
    if (e.ColumnIndex == 0 && e.RowIndex > -1)
    {
        Brush Brs= new SolidBrush(Color.FromName(Dgv[1, e.RowIndex].Value.ToString()));
        GraphicsExtensions.FillCircle(e.Graphics, Brs, e.CellBounds.Location.X + 5, e.CellBounds.Location.Y + 10, 5);
        e.Handled = true;
    }
}

结果是datagridview有2列:

第1列:具有6种特定颜色的6个圆圈

第2列:6种颜色名称

谢谢。

关于c# - 在C#Winforms中的DataGridViewCell内绘制填充的圆形或矩形,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14349624/

10-12 14:19