In our application we are using datagridview control to show some data. In the gridview one column is DataGridViewImageColumn.
In the CellFormatting event we are setting some images like
e.CellStyle.BackColor = Color.Red;
e.Value = Properties.Resources.Triangle
Where Triangle is a bitmap resource and the image is transparent. When we set the color as Red the transparent portion of the image will show the color and is working fine.
Now we have to show some text over the image. So is there any way to show a text over a transparent image which is shown in the DataGridViewImageColumn.?