📄 project1.dpr
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -