Hi,I'm using a wincombo with some conditional format.The conditional format set the background to red if the value in the column exceeds a threshold. As long as no row is selected, it looks like this :
If you select a row with a red cell, it looks like this :
As you can see, on this immage it's impossible to see the selected row is covering the red background.Is it possible to change the active row background color to be somewhat transparent ?This would allow to see "through" the blue selected record and being aware it's covering a red cell.Regards,Ivan
Hi Ivan,
If you are using a relatively recent version of the controls, then the easiest thing to do is make the selection appear as a semi-transparent overlay like Excel does.
You do it like so:
this.ultraCombo1.DisplayLayout.SelectionOverlayColor = SystemColors.Highlight;
You don't have to use the system highlight color, of course, you can use any color you want.
Sounds great. Yes I just changed to 2011V1.I tried it. If i set this to any color, I don't see any color at all. It seems to be 100% transparant.Is there another proerty to set the percentage ?