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

📄 imageview.~dpr

📁 关于DEPHI7的学习资料
💻 ~DPR
字号:
program Imageview;

uses
  Forms,
  Imageviewer in 'Imageviewer.pas' {ImageViewForm},
  SetSlide in 'SetSlide.pas' {SlideSetForm},
  About in 'About.pas' {AboutForm};

{$R *.res}

begin
  Application.Initialize;
  Application.Title := '优利尔图像浏览器';
  Application.CreateForm(TImageViewForm, ImageViewForm);
  Application.CreateForm(TSlideSetForm, SlideSetForm);
  Application.CreateForm(TAboutForm, AboutForm);
  Application.Run;
end.

⌨️ 快捷键说明

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