filesystem.~dpr
来自「这是一个间歇的小唾弃,希望大家希望,以后大家多学习,多多交流共同进步!」· ~DPR 代码 · 共 19 行
~DPR
19 行
program FileSystem;
uses
Forms,
TestMain in 'TestMain.pas' {frmMain},
ReName in 'ReName.pas' {frmReName},
Attribute in 'Attribute.pas' {frmAttibute};
{$R *.RES}
begin
Application.Initialize;
Application.Title := '简易文件操作系统';
Application.CreateForm(TfrmMain, frmMain);
Application.CreateForm(TfrmReName, frmReName);
Application.CreateForm(TfrmAttibute, frmAttibute);
Application.Run;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?