📄 msdomgen.dpr
字号:
program MSDOMGen;
uses
Forms,
MSDOMGen1 in 'MSDOMGen1.pas' {frmDOMXML},
CommonXML in 'CommonXML.pas' {datCommonXML: TDataModule};
{$R *.RES}
begin
Application.Initialize;
Application.Title := 'MS DOM XML generation';
Application.CreateForm(TfrmDOMXML, frmDOMXML);
Application.CreateForm(TdatCommonXML, datCommonXML);
Application.Run;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -