indysshdemo.dpr.~1~
来自「著名的SecureBlackBox控件完整源码」· ~1~ 代码 · 共 20 行
~1~
20 行
program IndySSHDemo;
uses
Forms,
MainForm in 'MainForm.pas' {frmMain},
AboutForm in 'AboutForm.pas' {frmAbout},
ConnectionPropertiesForm in 'ConnectionPropertiesForm.pas' {frmConnectionProperties};
{$R *.res}
begin
Application.Title := 'ElIdSSHClient demo application';
Application.Initialize;
Application.CreateForm(TfrmMain, frmMain);
Application.CreateForm(TfrmAbout, frmAbout);
Application.CreateForm(TfrmConnectionProperties, frmConnectionProperties);
Application.Run;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?