📄 imageview.~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 + -