TMyPanel = class(TPanel)
public
procedure AfterConstruction; override;
end;
procedure TMyPanel.AfterConstruction;
begin
inherited AfterConstruction;
Caption := '';
end;
I want to clear the caption during construction, but this code does not work as I expect. It will not set the caption to empty string. If I assign ' ' (space) to Caption, it will remain, but this is not a proper solution.
I am using Delphi 2006.