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

SAP Web Service from .NET via WCF -

Optimized Line drawing in QT -

datetime - str to time in python -