?? project1.dpr
字號(hào):
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.
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -