📄 editws.dpr
字号:
program EditWS;
uses
Forms,
MainUnit in 'MainUnit.pas' {frmMain},
showdata in 'showdata.pas' {frmSD},
account in 'account.pas' {frmAccount},
FlashForm in 'FlashForm.pas' {MUFlash},
Dec in 'Dec.pas',
itemForAll in 'itemForAll.pas' {frmItemForAll};
{$R *.res}
begin
muflash:=tmuflash.Create(application);
muflash.Show;
muflash.Update;
Application.Initialize;
Application.Title := 'EditWS';
Application.CreateForm(TfrmMain, frmMain);
Application.CreateForm(TfrmSD, frmSD);
Application.CreateForm(TfrmAccount, frmAccount);
muflash.Close;
muflash.Free;
Application.Run;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -