We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

Background Image and Cell Interior

Hi, we would like to have a background image in our grid control, and at the same time the capability to change the cell background color of any cell. It seems that if a backgroud image is specified, then the cell background color can''t change. Any suggestion ? Thanks in advance Riccardo

2 Replies

AD Administrator Syncfusion Team March 16, 2006 06:48 AM UTC

Hi Riccardo, Setting the BackgroundImage will set the TransparentBackground property to true and this has the higher precedence over the backcolor property. Hence this causes the issue. To have both image and backcolor, you can use the FillRectangle method in the DrawCell event. Here is the code snippet. private void gridControl1_DrawCell(object sender, Syncfusion.Windows.Forms.Grid.GridDrawCellEventArgs e) { if(e.RowIndex == 4) { SolidBrush br = new SolidBrush(Color.PaleGreen); e.Graphics.FillRectangle(br, e.Bounds); br.Dispose(); } } Let us know if this helps. Best regards, Madhan.


RT Riccardo Tarli March 16, 2006 08:19 AM UTC

It works. Thanks a lot Madhan. Riccardo

Loader.
Live Chat Icon For mobile
Up arrow icon