📄 apprehenddemo.dpr
字号:
program ApprehendDemo;
uses
Forms,
FrmMain in 'FrmMain.pas' {FormMain},
fullscrn in 'fullscrn.pas' {FullScreen},
ScreenDelay in 'ScreenDelay.pas' {DelayDlg},
Splash in 'Splash.pas' {SplashForm};
{$R *.RES}
begin
SplashForm := TSplashForm.Create(Application);
try
SplashForm.Show;
SplashForm.Refresh;
Application.Initialize;
SplashForm.Update;
Application.Title := 'Apprehend Demo';
Application.CreateForm(TFormMain, FormMain);
Application.CreateForm(TDelayDlg, DelayDlg);
SplashForm.Close;
repeat
Application.ProcessMessages;
until SplashForm.CloseQuery;
finally
SplashForm.Free;
end;
Application.Run;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -