📄 videocap.~dpr
字号:
program VideoCap;
uses
Forms,
frmMain in 'frmMain.pas' {Main},
DlgTreiber in 'DlgTreiber.pas' {frmDriverSelect},
frmPara in 'frmPara.pas' {DlgVPara},
aboutx in 'aboutx.pas' {AboutDlg},
AlertForm in 'AlertForm.pas' {frmAlertConfig},
ControlClass in 'ControlClass.pas',
MonitorDM in 'D:\Program Files\Borland\Delphi5\lib\MonitorDM.pas' {DMMain: TDataModule};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TMain, Main);
Application.CreateForm(TAboutDlg, AboutDlg);
Application.CreateForm(TfrmAlertConfig, frmAlertConfig);
Application.CreateForm(TDMMain, DMMain);
Application.Run;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -