📄 monitor.~dpr
字号:
program Monitor;
uses
Forms,
MainForm in 'MainForm.pas' {Main},
DriverSelectForm in 'DriverSelectForm.pas' {frmDriverSelect},
AboutForm in 'AboutForm.pas' {AboutDlg},
AlertForm in 'AlertForm.pas' {frmAlertConfig},
MonitorDM in 'MonitorDM.pas' {DMMain: TDataModule},
CommonUnit in 'CommonUnit.pas',
RecPersonForm in 'RecPersonForm.pas' {frmRecPerson},
ParamForm in 'ParamForm.pas' {DlgVPara};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TDMMain, DMMain);
Application.CreateForm(TfrmRecPerson, frmRecPerson);
Application.CreateForm(TMain, Main);
Application.CreateForm(TfrmAlertConfig, frmAlertConfig);
Application.CreateForm(TfrmDriverSelect, frmDriverSelect);
Application.CreateForm(TAboutDlg, AboutDlg);
Application.CreateForm(TDlgVPara, DlgVPara);
Application.Run;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -