user controls - c# usercontrol transparency -


it's possible have usercontrol on form , set transparency percentage? wish have background of usercontrol 70% transparent, buttons , rest of components 100%

it's possible? thanks

try adding following control's constructor:

base.createparams.exstyle |= 0x20;             setstyle(controlstyles.supportstransparentbackcolor, true);  backcolor = color.fromargb(0x80,0xff,0xcc,0x33); 

Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

html - Instapaper-like algorithm -

c# - How to execute a particular part of code asynchronously in a class -