Posted by Pharaoh on October 18, 2010 ·
Unfortunately datagridview does not support gradient columns header , there’s a work around it : first thing we need to do is to handle the CellPainting Event of the Datagridview .
put this segment of code on the top of code page of the Form
//to use brushes , and graphics
using System.Drawing;
using System.Drawing.Drawing2D;
in the CellPainting Event of the datagridview post the following [...]