I would like to create my application forms in the color independent from the user's color settings of the Aero. Is it possible to colorize my forms with the selected color without affecting the user's settings ?

This I want to do only for the Windows Aero colors.

Thanks

link|improve this question

2  
I just noticed that you can DrawRect in the OnPaint event of form to alter the colour of a region of glass. It even looks OK. I fear that this 'hack' depends on undocumented assumptions, however... It might not work in the next version of Windows... – Andreas Rejbrand Feb 13 at 16:46
@Andreas, what is DrawRect ? – Martin Reiner Feb 13 at 16:51
Sorry, meant FillRect. – Andreas Rejbrand Feb 13 at 16:53
@Andreas, thanks, good tip! I've sent you some reward :) – Martin Reiner Feb 13 at 17:01
2  
Thanks! It even gave me a new badge! – Andreas Rejbrand Feb 13 at 17:08
feedback

1 Answer

up vote 3 down vote accepted

No, you can't do that, the glass composition color is system wide. As workaround you can draw a 32 bits bitmap of a solid color over the form using the Windows.AlphaBlend function.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.