splashtest.dpr

来自「Threaded Splash Form on Screen in Delphi」· DPR 代码 · 共 20 行

DPR
20
字号
program SplashTest;

uses
  Forms,
  SplashTestU1 in 'SplashTestU1.pas' {Form1},
  SplashScreenU in 'SplashScreenU.pas' {SplashForm};

{$R *.res}

begin
  Application.Initialize;
  ShowSplashScreen;
  try
    Application.CreateForm(TForm1, Form1);
  finally
    HideSplashScreen;
  end;
  Application.Run;
end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?