Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
315
Active cel/row appearance with semi transparent background.
posted

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

Parents
No Data
Reply
  • 469350
    Offline posted

    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.

     

Children