?? 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 + -