I'm creating simple component inherited from TControl (Firemonkey). In constructor I wrote :
constructor TControl1.Create(AOwner: TComponent);
begin
inherited;
fTest := TLayout.Create(Self);
fTest.Parent := Self;
end;
How when I place this component to the form, Structure list shows Tlayout as subcomponent as <components1>. How can I hide it?
See screenshot.