test.dpr

来自「用DELPHI 和MAPX的基础练习.是学习的好资料」· DPR 代码 · 共 32 行

DPR
32
字号
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 + =
减小字号Ctrl + -
显示快捷键?