📄 skyeditor.dpr
字号:
program SkyEditor;
uses
Forms,
REAbout in 'REABOUT.PAS' {AboutBox},
REMain1 in 'REMain1.pas' {MainForm},
SplashForm in 'SplashForm.pas' {FrmSplash},
newunit in 'newunit.pas' {typeform},
sendUnit in 'sendUnit.pas' {Dform},
zbsunit in 'zbsunit.pas' {zbsform},
handUnit in 'handUnit.pas' {handForm};
{$R *.RES}
begin
FrmSplash := TFrmSplash.Create( Application );
try
FrmSplash.Show;
FrmSplash.Update; { Handle any Pending Paint Messages }
Application.Title := '@NewStar通用文档资料编辑器-(客户\服务器)';
Application.CreateForm(TMainForm, MainForm);
Application.CreateForm(Ttypeform, typeform);
Application.CreateForm(TDform, Dform);
Application.CreateForm(Tzbsform, zbsform);
Application.CreateForm(ThandForm, handForm);
finally
FrmSplash.Free;
end;
Application.Run;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -