📄 prjedit.~dpr
字号:
program PrjEdit;uses QForms, Editor in 'Editor.pas' {FrmEditor}, About in 'About.pas' {AboutBox}, Splash in 'Splash.pas' {FrmSplash};var FrmSplash: TFrmSplash;{$R *.res}begin Application.Initialize; // Create a splash window FrmSplash := TFrmSplash.Create( Application ); FrmSplash.Show(); FrmSplash.Update(); // Delay while FrmSplash.TimerDelay.Enabled do begin Application.ProcessMessages();// FrmSplash.TimerDelay.Enabled := false; end; Application.CreateForm(TFrmEditor, FrmEditor); // Hide the instance FrmSplash.Hide(); // Free the instance FrmSplash.Free(); Application.Run;end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -