Danke Harry, ich hab es jetzt hin aber ein neues Problem-
Ich habe 2 Scroolbars in meiner Komponente erstellt
Delphi-Quellcode:
xxx = class(TRectangle)
private
FS1,FS2: TScrollBar;
...
create
FS1:=TScrollBar.Create(Self);
FS2:=TScrollBar.Create(Self);
FS1.Align:=TAlignLayout.Bottom;
FS1.Orientation:=TOrientation.Horizontal;
FS2.Align:=TAlignLayout.Right;
FS2.Orientation:=TOrientation.Vertical;
FS1.Parent:=Self;
FS2.Parent:=Self;
Jetzt werden die in der FMX Form gespeichert (was ich nicht möchte)
Weil die beim Start des Programm dann doppelt sind.
Was kann ich da machen