helpunit.pas
来自「VaxSIPUserAgentSDK」· PAS 代码 · 共 47 行
PAS
47 行
unit HelpUnit;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
THelpForm = class(TForm)
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
Label4: TLabel;
Label5: TLabel;
Label11: TLabel;
Label12: TLabel;
Label13: TLabel;
BtnClose: TButton;
Label14: TLabel;
Label15: TLabel;
Label17: TLabel;
Label18: TLabel;
Label16: TLabel;
Label6: TLabel;
Label7: TLabel;
procedure BtnCloseClick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
HelpForm: THelpForm;
implementation
{$R *.dfm}
procedure THelpForm.BtnCloseClick(Sender: TObject);
begin
Close();
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?