flexeditse.dpr

来自「FlexGraphics是一套创建矢量图形的VCL组件」· DPR 代码 · 共 41 行

DPR
41
字号
program FlexEditSE;

uses
  Forms,
  ACCtrls in '..\ACControls\ACCtrls.pas',
  Main in 'FormsSE\Main.pas' {EditMainForm},
  fChild in 'fChild.pas' {FlexChildForm},
  fOptions in 'FormsSE\fOptions.pas' {fmOptions},
  ToolMngr in 'FormsSE\ToolMngr.pas' {ToolContainer},
  fInspector in 'FormsSE\fInspector.pas' {fmInspector},
  fLibrary in 'fLibrary.pas' {fmLibrary},
  fLibProps in 'FormsSE\fLibProps.pas' {fmLibProps},
  fLibItemProps in 'FormsSE\fLibItemProps.pas' {fmLibItemProps},
  fPreview in 'fPreview.pas' {fmPreview},
  fDocProps in 'FormsSE\fDocProps.pas' {fmDocProps},
  UserDataFrm in 'PropFormsSE\UserDataFrm.pas' {UserDataForm},
  PenFrm in 'PropFormsSE\PenFrm.pas' {PenPropForm},
  PictureFrm in 'PropFormsSE\PictureFrm.pas' {PicturePropForm},
  StrListFrm in 'PropFormsSE\StrListFrm.pas' {StrListPropForm},
  BrushFrm in 'PropFormsSE\BrushFrm.pas' {BrushPropForm},
  LineCapFrm in 'PropFormsSE\LineCapFrm.pas' {LineCapPropForm},
  BackgroundFrm in 'PropFormsSE\BackgroundFrm.pas' {BackgroundOptionsForm},
  fUserData in 'FormsSE\fUserData.pas' {fmUserData},
  fAboutPrg in 'fAboutPrg.pas' {formAbout},
  fLayers in 'fLayers.pas' {fmLayers},
  fHistoryDbg in 'Debug\fHistoryDbg.pas' {fmHistoryDebug},
  FormatDxfFile in 'FormatDxf\FormatDxfFile.pas';

{$R *.RES}

begin
  Application.Initialize;
  Application.Title := 'FlexGraphics editor';
  Application.CreateForm(TEditMainForm, EditMainForm);
  Application.CreateForm(TfmInspector, fmInspector);
  Application.CreateForm(TfmLibrary, fmLibrary);
  Application.CreateForm(TfmUserData, fmUserData);
  Application.CreateForm(TfmLayers, fmLayers);
  Application.Run;
end.

⌨️ 快捷键说明

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