📄 emailtogsm.~dpr
字号:
program EmailToGsm;
uses
Forms,
Main in 'Main.pas' {frmMain},
LeftView in 'LeftView.pas' {frmLeft: TFrame},
RightView in 'RightView.pas' {frmRight: TFrame},
TopView in 'TopView.pas' {frmTop: TFrame},
BottomView in 'BottomView.pas' {frmBottom: TFrame},
Account in 'Account.pas' {frmAccount},
CoreData in 'CoreData.pas',
Config in 'Config.pas' {frmConfig},
Login in 'Login.pas' {frmLogin};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TfrmMain, frmMain);
Application.CreateForm(TfrmAccount, frmAccount);
Application.CreateForm(TfrmConfig, frmConfig);
Application.CreateForm(TfrmLogin, frmLogin);
Application.Run;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -