project1.dpr
来自「下面又是翻译: 韩国人 Silhwan Hyun 改写。 TMagnetic」· DPR 代码 · 共 20 行
DPR
20 行
program Project1;
uses
Forms,
uMain in 'uMain.pas' {frmParent},
Magnetic in 'Magnetic.pas',
uSub1 in 'uSub1.pas' {frmChild1},
uSub2 in 'uSub2.pas' {frmChild2},
uSub3 in 'uSub3.pas' {frmChild3};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TfrmParent, frmParent);
Application.CreateForm(TfrmChild2, frmChild2);
Application.CreateForm(TfrmChild3, frmChild3);
Application.Run;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?