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

📄 book.dpr

📁 源代码竟供大家参考
💻 DPR
字号:
program Book;

uses
  Forms,
  main in 'main.pas' {f_main},
  Setup in 'Setup.pas' {f_setup},
  ye in 'Ye.pas' {f_ye},
  helpa in 'helpa.pas' {f_help_about},
  helpag in 'helpag.pas' {f_help_about_game},
  helpaga in 'helpaga.pas' {f_help_about_game_about},
  gb2big5 in 'gb2big5.pas',
  mess in 'mess.pas' {f_mess},
  LabelIn in 'LabelIn.pas' {f_LabelIn},
  clearnew in 'clearnew.pas' {f_clearnew},
  togaut in 'togaut.pas' {f_TogAut};

{$R *.RES}

begin
  Application.Initialize;
  Application.CreateForm(Tf_main, f_main);
  Application.CreateForm(Tf_setup, f_setup);
  Application.CreateForm(Tf_ye, f_ye);
  Application.CreateForm(Tf_help_about, f_help_about);
  Application.CreateForm(Tf_help_about_game, f_help_about_game);
  Application.CreateForm(Tf_help_about_game_about, f_help_about_game_about);
  Application.CreateForm(Tf_mess, f_mess);
  Application.CreateForm(Tf_LabelIn, f_LabelIn);
  Application.CreateForm(Tf_clearnew, f_clearnew);
  Application.CreateForm(Tf_TogAut, f_TogAut);
  Application.Run;
end.

⌨️ 快捷键说明

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