⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 godmanform.pas

📁 Nicesoft ERP 是新一代智能型 ERP 系统
💻 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 + -