cdplayer.dpr

来自「一个简单而使用的CD播放器,是从书上看来的.与大家分享」· DPR 代码 · 共 20 行

DPR
20
字号
program CDPlayer;

uses
  Forms,
  Cd in 'CD.PAS' {CDForm},
  About in 'ABOUT.PAS' {CDAbout},
  Cdedit in 'CDEDIT.PAS' {CDEditForm},
  Ledcntrl in '..\LEDDISP\Ledcntrl.pas';

{$R *.RES}

begin
  Application.Initialize;
  Application.Title := 'Compact Disk Player';
  Application.CreateForm(TCDForm, CDForm);
  Application.CreateForm(TCDAbout, CDAbout);
  Application.CreateForm(TCDEditForm, CDEditForm);
  Application.Run;
end.

⌨️ 快捷键说明

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