transformtool.~dpr

来自「将录入的文字转换为JPE格式的图片显示出来」· ~DPR 代码 · 共 16 行

~DPR
16
字号
program TransFormTool;

uses
  Forms,
  Main in 'Main.pas' {TextFrm},
  ImageForm in 'ImageForm.pas' {ImageFrm};

{$R *.RES}

begin
  Application.Initialize;
  Application.CreateForm(TTextFrm, TextFrm);
  Application.CreateForm(TImageFrm, ImageFrm);
  Application.Run;
end.

⌨️ 快捷键说明

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