Gridview capable of displaying rich text in WinForms

I'm looking for a WinForms control that will allow me to display data as a table, but with some rich content like different font colors, images. I don't need data binding, etc., just a "RichTextBox control table". I suppose it won't be difficult to create such control, but I thought I'd ask first ...

Thank you for your responses.

0


source to share


1 answer


You always have the option to create your own DataGridView column type. I've done this a few times recently and found it to work really well. It takes surprisingly little code and knowledge of GDI to put together something very nice.



What information are you trying to display in your grid?

+1


source







All Articles