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

📄 project1.~dpr

📁 工作之余做的一些实例,希望对大家有用,共同学习,相互促进
💻 ~DPR
字号:
program Project1;

uses
  Forms,
  Unit1 in 'Unit1.pas' {Form1},
  TPCZUnit2 in 'TPCZUnit2.pas' {FormTPCZ},
  TPGMUnit2 in 'TPGMUnit2.pas' {TPGMForm};

{$R *.res}

begin
  Application.Initialize;
  Application.CreateForm(TForm1, Form1);
  Application.CreateForm(TFormTPCZ, FormTPCZ);
  Application.CreateForm(TTPGMForm, TPGMForm);
  Application.Run;
end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -