Moving controls between Delphi components
问题 I´m trying to create a Delphi non-visual component that can hold some visual components. In design time I create a custom TPanel, so I can put my visual components in it and then I try to get this controls from the TPanel and store them in another component. This is my custom panel TDesignTimePanel = class(TPanel) private FPanel: TPanelDialogo; public constructor Create(AOwner: TComponent); override; destructor Destroy; override; procedure GetChildren(Proc: TGetChildProc; Root: TComponent);