Zitat von
DeddyH:
Versuch mal im KonstruktorControlStyle := ControlStyle + [csAcceptsControls];
Delphi-Quellcode:
constructor TMeineClasse.Create(AOwner: TComponent);
begin
inherited;
ControlStyle := ControlStyle + [csAcceptsControls];
U_Panel := TPanel.Create(Self);
U_Panel.Parent := Self;
U_Panel.Color := CLRed;
U_Panel.Align := ALClient;
end;
Nein das hat leider auch nicht geklappt