📄 sgr_demo.dpr
字号:
program sgr_demo;
uses
Forms,
SysUtils,
About in 'About.pas' {AboutBox},
DemoMain in 'DemoMain.pas' {FsgrDemoMain},
AxisLmtsDlg in 'AxisLmtsDlg.pas' {FAxisLmtsDlg},
sgr_sprint in 'sgr_sprint.pas' {MFPrintDlg},
AxisPrptsDlg in 'AxisPrptsDlg.pas' {FAxisPrptsDlg};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TFsgrDemoMain, FsgrDemoMain);
Application.CreateForm(TAboutBox, AboutBox);
Application.CreateForm(TFAxisLmtsDlg, FAxisLmtsDlg);
Application.CreateForm(TMFPrintDlg, MFPrintDlg);
Application.CreateForm(TFAxisPrptsDlg, FAxisPrptsDlg);
Application.Run;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -