Click here to Skip to main content
15,881,248 members
Articles / Desktop Programming / Windows Forms

RichTextBox Cell in a DataGridView

Rate me:
Please Sign up or sign in to vote.
4.81/5 (53 votes)
9 Jul 2014CPOL2 min read 750.9K   11.6K   160   123
Source code for how to create a RichTextBox column in a DataGridView

DataGridViewRichTextBox

Introduction

You can use this DataGridViewRichTextBoxColumn to display and edit RTF content.

Background

A customer wanted to have superscript and subscript support in his reports, and he also wanted to edit the reports. I thought RTF files were a good choice. Then, a problem came up. I needed a setting dialog with a DataGridView, where the user will input text (should support superscript and subscript). So, I decided to put a RichTextBox in the DataGridView.

I found an idea here. There was no source code. So, I decided to write about it and post my first article in CodeProject.

Three Classes to make a DataGridViewColumn

There is an example of a calendar DataGridViewColumn here.

To make a custom DataGridViewColumn, we should write three classes:

  1. An editor control class derived from IDataGridViewEditingControl
  2. A cell class derived from DataGridViewCell or its descendant class
  3. A column class derived from DataGridViewColumn or its descendant class

First, the Editor Control Class

Here is the code for supporting multiline input in the RichTextBox:

C#
public class  DataGridViewRichTextBoxEditingControl : 
        RichTextBox, IDataGridViewEditingControl
{
    // To implement multiline, 'Enter' should be treated as an input key.
    protected override bool IsInputKey(Keys keyData)
    {
        Keys keys = keyData & Keys.KeyCode;

        if (keys == Keys.Return)
        {
            return this.Multiline;
        }

        return base.IsInputKey(keyData);
    } 

    // Tell DataGridView 'Enter' is an input key to this control.
    // And some other keys are also input keys.
    public bool EditingControlWantsInputKey
    (Keys keyData, bool dataGridViewWantsInputKey)
    {
        switch ((keyData & Keys.KeyCode))
        {
            case Keys.Return:
                // The code for 'Enter' is copied from 
                // DataGridViewTextBoxEditingControl,
                // Shift + Enter = NewLine
                if ((((keyData & (Keys.Alt | Keys.Control | Keys.Shift))
                     == Keys.Shift) && this.Multiline))
                {
                    return true;
                }
                break;
            case Keys.Left:
            case Keys.Right:
            case Keys.Up:
            case Keys.Down:
                return true;
        }

        return !dataGridViewWantsInputKey;
    }
}

Here is the code for shortcuts. RichTextBox already supports Ctrl + '+' and Ctrl + Shift + '+' for subscript and superscript. What needs to be done is add support for Ctrl + 'B', Ctrl + 'I', and Ctrl + 'U'.

C#
protected override void OnKeyDown(KeyEventArgs e)
{
    base.OnKeyDown(e);

    if (e.Control)
    {
        switch (e.KeyCode)
        {
            // Control + B = Bold
            case Keys.B:
                if (this.SelectionFont.Bold)
                {
                    this.SelectionFont = new Font(this.Font.FontFamily, 
                     this.Font.Size, ~FontStyle.Bold & this.Font.Style);
                }
                else
                    this.SelectionFont = new Font(this.Font.FontFamily, 
                     this.Font.Size, FontStyle.Bold | this.Font.Style);
                break;
            // Control + U = Underline
            case Keys.U:
                if (this.SelectionFont.Underline)
                {
                    this.SelectionFont = new Font(this.Font.FontFamily, 
                     this.Font.Size, ~FontStyle.Underline & this.Font.Style);
                }
                else
                    this.SelectionFont = new Font(this.Font.FontFamily, 
                     this.Font.Size, FontStyle.Underline | this.Font.Style);
                break;
            // Control + I = Italic
            // Conflicts with the default shortcut
            //case Keys.I:
            //    if (this.SelectionFont.Italic)
            //    {
            //        this.SelectionFont = new Font(this.Font.FontFamily, 
            //         this.Font.Size, ~FontStyle.Italic & this.Font.Style);
            //    }
            //    else
            //        this.SelectionFont = new Font(this.Font.FontFamily, 
            //         this.Font.Size, FontStyle.Italic | this.Font.Style);
            //    break;
            default:
                break;
        }
    }
}

Second, the Cell Class

This is the most important class for RichTextBoxColumn, because here we do the painting job for the cell.

I suggest you should first take a look here. Then, you will know how to print a RichTextBox. I just changed it a little to print it to an Image object.

The cell class was derived from DataGridViewTextBoxCell due to speed problems. I changed it with DataGridViewImageCell. I needed to do something to avoid errors in the DataGridViewImageCell.

C#
public class DataGridViewRichTextBoxCell : DataGridViewImageCell
{
    // The value should be RTF string, so these types should be changed.	
    public override Type ValueType
    {
        get
        {
            return typeof(string);
        }
        set
        {
            base.ValueType = value;
        }
    }

    public override Type FormattedValueType
    {
        get
        {
            return typeof(string);
        }
    } 

    // Since the value type is changed, we need to do something more.
    private static void SetRichTextBoxText(RichTextBox ctl, string text)
    {
        try
        {
            ctl.Rtf = text;
        }
        catch (ArgumentException)
        {
            ctl.Text = text;
        }
    }
	
    public override void InitializeEditingControl
	(int rowIndex, object initialFormattedValue, 
	DataGridViewCellStyle dataGridViewCellStyle)
    {
        base.InitializeEditingControl
	(rowIndex, initialFormattedValue, dataGridViewCellStyle);

        RichTextBox ctl = DataGridView.EditingControl as RichTextBox;

        if (ctl != null)
        {
            SetRichTextBoxText(ctl, Convert.ToString(initialFormattedValue));
        }
    }

    protected override object GetFormattedValue
	(object value, int rowIndex, ref DataGridViewCellStyle cellStyle, 
	    TypeConverter valueTypeConverter, 
		TypeConverter formattedValueTypeConverter,
		 DataGridViewDataErrorContexts context)
    {
        return value;
    }
}

Now, we will paint the cell.

The RichTextBoxPrinter.Print function is from the link I mentioned above.

C#
private static readonly RichTextBox _editingControl = new RichTextBox();

// Images for selected and normal states.
private Image GetRtfImage(int rowIndex, object value, bool selected)
{
    Size cellSize = GetSize(rowIndex);

    if (cellSize.Width < 1 || cellSize.Height < 1)
        return null;

    RichTextBox ctl = null;

    if (ctl == null)
    {
        ctl = _editingControl;
        ctl.Size = GetSize(rowIndex);
        SetRichTextBoxText(ctl, Convert.ToString(value));
    }

    if (ctl != null)
    {
        // Print the content of RichTextBox to an image.
        Size imgSize = new Size(cellSize.Width - 1, cellSize.Height - 1);
        Image rtfImg = null;

        if (selected)
        {
            // Selected cell state
            ctl.BackColor = DataGridView.DefaultCellStyle.SelectionBackColor;
            ctl.ForeColor = DataGridView.DefaultCellStyle.SelectionForeColor;

            // Print image
            rtfImg = RichTextBoxPrinter.Print(ctl, imgSize.Width, imgSize.Height);

            // Restore RichTextBox
            ctl.BackColor = DataGridView.DefaultCellStyle.BackColor;
            ctl.ForeColor = DataGridView.DefaultCellStyle.ForeColor;
        }
        else
        {
            rtfImg = RichTextBoxPrinter.Print(ctl, imgSize.Width, imgSize.Height);
        }

        return rtfImg;
    }

    return null;
}

// Draw the image of the rich text box
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);

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

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

Other things required for cell edit:

C#
// Remember, DataGridViewImageCell doesn't behave like DataGridViewTextBoxCell.
// So we need to handle the mouse events for edit.

#region Handlers of edit events, copied from DataGridViewTextBoxCell 

private byte flagsState;

protected override void OnEnter(int rowIndex, bool throughMouseClick)
{
    base.OnEnter(rowIndex, throughMouseClick);

    if ((base.DataGridView != null) && throughMouseClick)
    {
        this.flagsState = (byte)(this.flagsState | 1);
    }
}

protected override void OnLeave(int rowIndex, bool throughMouseClick)
{
    base.OnLeave(rowIndex, throughMouseClick);

    if (base.DataGridView != null)
    {
        this.flagsState = (byte)(this.flagsState & -2);
    }
}

protected override void OnMouseClick(DataGridViewCellMouseEventArgs e)
{
    base.OnMouseClick(e);
    if (base.DataGridView != null)
    {
        Point currentCellAddress = base.DataGridView.CurrentCellAddress;

        if (((currentCellAddress.X == e.ColumnIndex) && 
            (currentCellAddress.Y == e.RowIndex)) && 
            (e.Button == MouseButtons.Left))
        {
            if ((this.flagsState & 1) != 0)
            {
                this.flagsState = (byte)(this.flagsState & -2);
            }
            else if (base.DataGridView.EditMode != 
                      DataGridViewEditMode.EditProgrammatically)
            {
                base.DataGridView.BeginEdit(false);
            }
        }
    }
}

#endregion

Finally, the Column Class

It's easy because we already have the classes for the editor control and the cell:

C#
public class DataGridViewRichTextBoxColumn : DataGridViewColumn
{
    public DataGridViewRichTextBoxColumn()
        : base(new DataGridViewRichTextBoxCell())
    { 
    }

    public override DataGridViewCell CellTemplate
    {
        get
        {
            return base.CellTemplate;
        }
        set
        {
            if (!(value is DataGridViewRichTextBoxCell))
                throw new InvalidCastException("CellTemplate must" + 
                      " be a DataGridViewRichTextBoxCell");

            base.CellTemplate = value;
        }
    }
}

Using the Code

Use it just like other columns for DataGridView. See the demo source code.

Points of Interest

At first, the cell class was derived from DataGridViewTextBoxCell. It's OK if the text is short. But, when the RTF content was long or it contained a picture, it became slow when entering or leaving the cell. Then, I changed the parent class to DataGridViewImageCell, and now the speed is no longer a problem.

History

  • 7/19/2014
    • Add some sample code for ashsanD to demostrate how to set the specific text bold. E.g. user can search some text in the datagridview and the matched text will be highlighted.
  • 4/30/2009
    • Updated class DataGridViewRichTextBoxCell (including gzobi666's correction)
    • Updated RichTextBoxPrinter according to the D_Kondrad's correction
  • 12/18/2008
    • Added the code with instructions

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
China China
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRe: is it available in vb Pin
ashsanD10-Nov-15 20:05
ashsanD10-Nov-15 20:05 
GeneralRe: is it available in vb Pin
audiodane6-Mar-18 21:12
audiodane6-Mar-18 21:12 
GeneralRe: is it available in vb Pin
Member 125622159-Jun-16 5:26
Member 125622159-Jun-16 5:26 
QuestionHi! Could I ask you a related question? Pin
Member 81065404-Jun-13 21:26
Member 81065404-Jun-13 21:26 
AnswerRe: Hi! Could I ask you a related question? Pin
mrwisdom5-Jun-13 17:29
mrwisdom5-Jun-13 17:29 
GeneralMy vote of 5 Pin
Mazen el Senih29-Mar-13 5:00
professionalMazen el Senih29-Mar-13 5:00 
QuestionChange font Pin
vyh15-Dec-12 13:17
vyh15-Dec-12 13:17 
QuestionSlow Perfomance Pin
andrea tosetto14-Dec-12 0:49
andrea tosetto14-Dec-12 0:49 
Many thanks for your code, it works very well when used with few data!

I've a problem I populate a Grid with 5 columns and 20 rows and I see that every action of the data grid view (selection change for example) is very slow compared to the Textbox Column.

I think that the problem is related to the paint function, so, how can I speed up it?

Kind regards,
Andrea
SuggestionRe: Slow Perfomance Pin
Member 814490724-Jan-13 21:48
Member 814490724-Jan-13 21:48 
GeneralRe: Slow Perfomance Pin
mrwisdom5-Jun-13 17:28
mrwisdom5-Jun-13 17:28 
GeneralRe: Slow Perfomance Pin
Member 878169726-Nov-14 5:40
Member 878169726-Nov-14 5:40 
QuestionArtifacts/rogue pixels when using Segoe UI font (and some padding) Pin
TheMperor4-Oct-12 22:21
TheMperor4-Oct-12 22:21 
QuestionHow to add columns dinamically? Pin
Thiago_Lima19-Sep-12 8:29
Thiago_Lima19-Sep-12 8:29 
AnswerRe: How to add columns dinamically? Pin
TheMperor4-Oct-12 22:03
TheMperor4-Oct-12 22:03 
QuestionAutoResizeRows Pin
Fred T. Chang3-Apr-12 1:38
Fred T. Chang3-Apr-12 1:38 
GeneralMy vote of 5 Pin
A.J.Wegierski1-Apr-12 19:22
A.J.Wegierski1-Apr-12 19:22 
GeneralMy vote of 5 Pin
ProEnggSoft22-Mar-12 14:39
ProEnggSoft22-Mar-12 14:39 
QuestionRight click copy Pin
jimdunntx30-Jan-12 6:36
jimdunntx30-Jan-12 6:36 
QuestionPrinting Pin
Member 298050924-Jan-12 2:50
Member 298050924-Jan-12 2:50 
QuestionToolkit issue? Pin
bioshock1720-Jan-12 6:14
bioshock1720-Jan-12 6:14 
GeneralDataGridView.AutoSizeRows (other solution) Pin
M.Gomes7-Nov-11 7:21
M.Gomes7-Nov-11 7:21 
QuestionParent Window Re: DataGridView.AutoSizeRows (other solution) Pin
Arne Christian Rosenfeldt18-Jan-13 9:42
Arne Christian Rosenfeldt18-Jan-13 9:42 
GeneralMy vote of 5 Pin
Filip D'haene13-Sep-11 11:44
Filip D'haene13-Sep-11 11:44 
GeneralThere is an error in using your program Pin
hambor18-Jun-11 3:34
hambor18-Jun-11 3:34 
GeneralThanks Pin
YZK30-Mar-11 0:25
YZK30-Mar-11 0:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.