Method 'SetText' not found in base class
interface
Uses VCL.ExtCtrls,VCL.Controls;
Type
TPanel1 = class(TPanel)
private
Procedure SetEnabled(Value: Boolean); override;
Procedure SetText(const Value: TCaption); override;
public
End;
implementation
{ TPanel1 }
procedure TPanel1.SetEnabled(Value: Boolean);
begin
inherited;
end;
procedure TPanel1.SetText(const Value: TCaption);
begin
inherited;
end;