project1.~dpr
来自「工作之余做的一些实例,希望对大家有用,共同学习,相互促进」· ~DPR 代码 · 共 18 行
~DPR
18 行
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 + =
减小字号Ctrl + -
显示快捷键?