Hi.
I am trying to make the background of an UltraGrid become either transparent or control it's opaque level. I've tried different things, but nothing seems to work (except setting the AlphaLevel - but that only makes it darker). The background always come out white (both where rows are present and below). Even the following don't have an effect!
grid.DisplayLayout.Appearance.BackColor = Color.Green;
How do I set the Opaque level if I set the BackColorAlpha as shown below?
grid.DisplayLayout.Appearance.BackColorAlpha = Alpha.Opaque;
Hykkel
Hi Hykkel,
Hykkel said:Even the following don't have an effect! grid.DisplayLayout.Appearance.BackColor = Color.Green;
If this has no effect, then something must be overriding it. My guess is that you are loading a layout, preset or StyleLibrary that is overriding the property settings.
THX alot Mike.
Found the override!