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
Post a Comment