Mam taki komponent:
TTwAppleItem = class(TCustomControl)
private
FLabel : TLabel;
public
constructor Create(AOwner: TComponent); override;
...
end;
constructor TTwAppleItem.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
FLabel := TLabel.Create(Self);
FLabel.Parent := Self;
FLabel.Caption := name; // dostaję pusty łańcuch
end;
Chciałbym aby po utworzeniu komponentu na formie FLabel.Caption był zamieniony na nazwę komponentu: TTwAppleItem1, TTwAppleItem2...
Tak jak gdy położy się TLabel na formie to na początku wyświetla on Label1, Label2 itd.