📄 imagesee.dpr
字号:
program ImageSee;
uses
Forms,
UnitFormBrowse in 'UnitFormBrowse.pas' {FormBrowse},
UnitFormView in 'UnitFormView.pas' {FormView},
UnitFormWebBrowser in 'UnitFormWebBrowser.pas' {FormWebBrowser},
UnitFormFlash in 'UnitFormFlash.pas' {FormFlash},
UnitFormExtractIco in 'UnitFormExtractIco.pas' {FormExtractIco},
UnitStructureStorageFile in 'UnitStructureStorageFile.pas',
UnitFormPassWord in 'UnitFormPassWord.pas' {FormPassword},
UnitPas2Html in 'UnitPas2Html.pas',
UnitPas2Xml in 'UnitPas2Xml.pas',
UnitParser in 'UnitParser.pas',
UnitKeywords in 'UnitKeywords.pas';
{$R *.res}
begin
Application.Initialize;
FormFlash:=TFormFlash.Create(Application);
FormFlash.Show;
FormFlash.Update;
Application.Title := 'ImageSee 1.0 ';
Application.CreateForm(TFormBrowse, FormBrowse);
Application.CreateForm(TFormView, FormView);
Application.CreateForm(TFormWebBrowser, FormWebBrowser);
Application.CreateForm(TFormExtractIco, FormExtractIco);
Application.CreateForm(TFormPassword, FormPassword);
FormFlash.Hide;
FormBrowse.Show;
Application.Run;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -