DataGridView自定义RichTextBox列

https://www.codeproject.com/Articles/31823/RichTextBox-Cell-in-a-DataGridView-2ide

RichText是用图片显示的,当SelectionMode为FullRowSelect,图片背景颜色设置有bug。修改Paint方法解决:code

        protected override void Paint(Graphics graphics, Rectangle clipBounds, Rectangle cellBounds, int rowIndex, DataGridViewElementStates cellState, object value, object formattedValue, string errorText, DataGridViewCellStyle cellStyle, DataGridViewAdvancedBorderStyle advancedBorderStyle, DataGridViewPaintParts paintParts)
        {
            base.Paint(graphics, clipBounds, cellBounds, rowIndex, cellState, null, null, errorText, cellStyle, advancedBorderStyle, paintParts);

            bool selected = base.Selected;
            if ((cellState | DataGridViewElementStates.Selected) == cellState)
            {
                selected = true;
            }

            Image img = GetRtfImage(rowIndex, value, selected);//base.Selected

            if (img != null)
                graphics.DrawImage(img, cellBounds.Left, cellBounds.Top);
        }