📄 flexeditse.dpr
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -