Transparent Grid

Is it possible to make a Syncfusion.Windows.Forms.Grid.GridControl have a transparent background colour? When I set BackColor to "Transparent" from the colour picker it tell me "Invalid Property Value". I have a gradient in the background that I want to show through.

1 Reply

AD Administrator Syncfusion Team July 11, 2004 05:39 AM UTC

Make sure you set the SupportsTransparentBackColor property as well as the backColor properties. this.grid.SupportsTransparentBackColor = true; this.grid.BackColor = Color.Transparent; this.grid.Properties.BackgroundColor = Color.Transparent; Here is a little sample.

Loader.
Up arrow icon