I need to create transparent component inheriting from TCustomControl.. so it is custom painted, yet is container for other components.

Can you tell me how to achieve this?

link|improve this question

How is what you're asking for different from a TPanel without a border that has the color of its parent? A little more detail? Are you asking about "transparent on aero glass", or mere inheritance of parent color color, or parent control texture? – Warren P Jul 13 '11 at 16:53
by "transparent" I mean it doesn't cover the background. So it behaves like TLabel with transparency enabled, yet it is able to host other controls. – migajek Aug 12 '11 at 12:41
feedback

1 Answer

up vote 15 down vote accepted

Inherit from TCustomTransparentControl and include csAcceptsControls control style at creation.

link|improve this answer
1  
+1 - I didn't know that class existed. When was it introduced? If it's been there as long as CB6 (~2001 or Delphi 7 timeframe) I'll be a sad panda. (I wrote a TWinControl descendant class to do this myself, and it was surprisingly tricky.) – David M Jul 14 '11 at 4:30
2  
@David - No need to be sad, it appears to have been introduced with Delphi 2006. – Sertac Akyuz Jul 14 '11 at 9:12
feedback

Your Answer

 
or
required, but never shown

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