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

📄 test.dpr

📁 用DELPHI 和MAPX的基础练习.是学习的好资料
💻 DPR
字号:
program test;

uses
  Forms,
  UMap in 'UMap.pas' {FMap},
  Uoption in 'Uoption.pas' {FOption},
  UDatasets in 'UDatasets.pas' {FDataSets},
  UCreateTheme in 'UCreateTheme.pas' {FCreateTheme},
  UModifyTheme in 'UModifyTheme.pas' {FModifyTheme},
  UModifyLegend in 'UModifyLegend.pas' {FModifyLegend},
  UFind in 'UFind.pas' {FFind},
  UZoom in 'UZoom.pas' {FZoom},
  UViewLayer in 'UViewLayer.pas' {FViewLayer},
  UStyle in 'UStyle.pas' {FStyle};

{$R *.res}

begin
  Application.Initialize;
  Application.CreateForm(TFMap, FMap);
  Application.CreateForm(TFOption, FOption);
  Application.CreateForm(TFDataSets, FDataSets);
  Application.CreateForm(TFCreateTheme, FCreateTheme);
  Application.CreateForm(TFModifyTheme, FModifyTheme);
  Application.CreateForm(TFModifyLegend, FModifyLegend);
  Application.CreateForm(TFFind, FFind);
  Application.CreateForm(TFZoom, FZoom);
  Application.CreateForm(TFViewLayer, FViewLayer);
  Application.CreateForm(TFStyle, FStyle);
  Application.Run;
end.

⌨️ 快捷键说明

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