bkgnddemo.dpr

来自「jvcl driver development envionment」· DPR 代码 · 共 20 行

DPR
20
字号
program BkgndDemo;

uses
  Forms,
  MDIBkgndDemoMain in 'MDIBkgndDemoMain.pas' {MDIMainForm},
  MDIBkgndDemoSettings in 'MDIBkgndDemoSettings.pas' {BkgndImageSettings},
  MDIBkgndDemoFrame in 'MDIBkgndDemoFrame.pas' {DemoFrame: TFrame},
  MDIBkgndDemoChld in 'MDIBkgndDemoChld.pas' {MDIChildForm};

{$R *.RES}

begin
  Application.Initialize;
  Application.Title := 'MDI Wallpaper demo';
  Application.CreateForm(TMDIMainForm, MDIMainForm);
  Application.CreateForm(TBkgndImageSettings, BkgndImageSettings);
  Application.CreateForm(TMDIChildForm, MDIChildForm);
  Application.Run;
end.

⌨️ 快捷键说明

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