⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tipexplorer.dpr

📁 Delphi树和酒店式的框架
💻 DPR
字号:
program TipExplorer;

uses
  Forms,
  TipMainForm in 'TipMainForm.pas' {FrmTipExplorer},
  AboutBoxForm in 'AboutBoxForm.pas' {FrmAboutBox},
  OptionsForm in 'OptionsForm.pas' {FrmOptions},
  SplashForm in 'SplashForm.pas' {FrmSplash};

{$R *.RES}

begin
  FrmSplash := TFrmSplash.Create( Application );
  try
    FrmSplash.Show;
    FrmSplash.Update;       { Handle any Pending Paint Messages }

    Application.Title := 'Delphi Tip Explorer';
    Application.CreateForm(TFrmTipExplorer, FrmTipExplorer);
    Application.CreateForm(TFrmAboutBox, FrmAboutBox);
  finally
    FrmSplash.Free;
  end;

  Application.Run;
end.

⌨️ 快捷键说明

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