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

📄 testgif.dpr

📁 Delphi direct support for GIF files
💻 DPR
字号:
program TestGif;
{$ifdef ver80}
{$M 32768, 8192}   { default stacksize of 16k is not sufficient }
{$endif ver80}

uses
  Forms,
  FmTstGIF in 'FMTSTGIF.PAS' {TestGifForm},
  FmAbout in 'FMABOUT.PAS' {AboutBox},
  FmGCE in 'FMGCE.PAS' {GCEDialog},
  FmImInfo in 'FMIMINFO.PAS' {GifImageInfoDialog},
  FmSubImg in 'FMSUBIMG.PAS' {SubImageDialog},
  FmAppe in 'FmAppe.pas' {APPEDialog},
  ShowExt in 'ShowExt.pas';

{$R *.RES}

begin
{$ifndef ver80}
  Application.Initialize;
{$endif ver80}
  Application.CreateForm(TTestGifForm, TestGifForm);
  Application.CreateForm(TAboutBox, AboutBox);
  Application.CreateForm(TGCEDialog, GCEDialog);
  Application.CreateForm(TGifImageInfoDialog, GifImageInfoDialog);
  Application.CreateForm(TSubImageDialog, SubImageDialog);
  Application.CreateForm(TAPPEDialog, APPEDialog);
  Application.Run;
end.

⌨️ 快捷键说明

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