winforms DataGridView中的选择在CellPaintEvent之后不起作用

8qgya5xd  于 2022-12-14  发布在  其他
关注(0)|答案(1)|浏览(150)

我有一个DataGridview。我需要使用CellPainting事件来自定义DataGridview的外观。我使用了msd文档的代码:
MSD Documentation
一切都很完美,我可以像我需要的那样自定义我的数据网格视图。但唯一不起作用的是选择一行:已完成绘图项目的储存格会从选取范围中排除。其外观如下:

有人知道我必须做什么才能让选择再次正常工作吗?
编辑:我还试图用“ApplyStyle”重新应用CellStyle,但不起作用。
Edit2:这里是来自MSD的代码。应用它将导致选择无法正常工作。

private void dataGridView1_CellPainting(object sender,
System.Windows.Forms.DataGridViewCellPaintingEventArgs e)
{
    if (this.dataGridView1.Columns["ContactName"].Index ==
        e.ColumnIndex && e.RowIndex >= 0)
    {
        Rectangle newRect = new Rectangle(e.CellBounds.X + 1,
            e.CellBounds.Y + 1, e.CellBounds.Width - 4,
            e.CellBounds.Height - 4);

        using (
            Brush gridBrush = new SolidBrush(this.dataGridView1.GridColor),
            backColorBrush = new SolidBrush(e.CellStyle.BackColor))
        {
            using (Pen gridLinePen = new Pen(gridBrush))
            {
                // Erase the cell.
                e.Graphics.FillRectangle(backColorBrush, e.CellBounds);

                // Draw the grid lines (only the right and bottom lines;
                // DataGridView takes care of the others).
                e.Graphics.DrawLine(gridLinePen, e.CellBounds.Left,
                    e.CellBounds.Bottom - 1, e.CellBounds.Right - 1,
                    e.CellBounds.Bottom - 1);
                e.Graphics.DrawLine(gridLinePen, e.CellBounds.Right - 1,
                    e.CellBounds.Top, e.CellBounds.Right - 1,
                    e.CellBounds.Bottom);

                // Draw the inset highlight box.
                e.Graphics.DrawRectangle(Pens.Blue, newRect);

                // Draw the text content of the cell, ignoring alignment.
                if (e.Value != null)
                {
                    e.Graphics.DrawString((String)e.Value, e.CellStyle.Font,
                        Brushes.Crimson, e.CellBounds.X + 2,
                        e.CellBounds.Y + 2, StringFormat.GenericDefault);
                }
                e.Handled = true;
            }
        }
    }
}
qxgroojn

qxgroojn1#

从Dr.null我构建了以下代码:

// checks if cell is selected. if so, paint the background with the selectionbackgroundcolor. 
if ((e.State & DataGridViewElementStates.Selected) == DataGridViewElementStates.Selected)
{
   var selectedbrush = new SolidBrush(e.CellStyle.SelectionBackColor);
   e.Graphics.FillRectangle(selectedbrush, e.CellBounds);
}

此代码必须位于CellPaintingEvent中。

相关问题