How can I merge two VCL components together so I can access both of their properties?
For example, I want to merge a TImage
and a TPanel
into one, I require that the TPanel
is the base component, so the TImage
will be child to the TPanel
.
Is it possible to do this?
I've been trying to do this in Delphi 2010 via Component > New VCL Component but it creates non-visual components when I require a visual component.
What can I do to change this?