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

📄 customformat1.dpr

📁 Drag files and Drop to delphi forms 0402
💻 DPR
字号:
program CustomFormat1;

{%File 'readme.txt'}

uses
  Forms,
  Target in 'Target.pas' {FormTarget},
  Source in 'Source.pas' {FormSource},
  DragDropTimeOfDay in 'DragDropTimeOfDay.pas';

{$R *.RES}

begin
  Application.Initialize;
  Application.CreateForm(TFormSource, FormSource);
  Application.CreateForm(TFormTarget, FormTarget);
  FormTarget.Top := FormSource.Top;
  FormTarget.Left := FormSource.Left+FormSource.Width;
  Application.Run;
end.

⌨️ 快捷键说明

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