arch.dpr
来自「用于Delphi和BCB的高速压缩组件库」· DPR 代码 · 共 23 行
DPR
23 行
program arch;
uses
Forms,
arch1 in 'arch1.pas' {MainForm},
uAbout in 'uAbout.pas' {AboutBox},
uAdd in 'uAdd.pas' {frmAdd},
uExtract in 'uExtract.pas' {frmExtract},
uProgress in 'uProgress.pas' {frmProgress};
{$R *.res}
begin
Application.Initialize;
Application.Title := 'Archiver';
Application.CreateForm(TMainForm, MainForm);
Application.CreateForm(TAboutBox, AboutBox);
Application.CreateForm(TfrmAdd, frmAdd);
Application.CreateForm(TfrmExtract, frmExtract);
Application.CreateForm(TfrmProgress, frmProgress);
Application.Run;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?