📄 godmanform.pas
字号:
unit GodmanForm;
interface
uses
Forms, SysUtils, Classes, Windows;
type
TGodmanForm = class(TForm)
protected
constructor GodmanCreate(AOwner: TComponent); virtual;
public
constructor Create(AOwner: TComponent); override;
end;
implementation
{ TGodmanForm }
constructor TGodmanForm.Create(AOwner: TComponent);
begin
raise Exception.Create('不允许调用该方法');
end;
constructor TGodmanForm.GodmanCreate(AOwner: TComponent);
begin
inherited Create(AOwner);
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -