about.pas

来自「if you want to program an alert task lik」· PAS 代码 · 共 43 行

PAS
43
字号
unit About;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, Buttons, StdCtrls, ShellApi;

type
  TAboutForm = class(TForm)
    CancelBtn: TSpeedButton;
    Label1: TLabel;
    Label2: TLabel;
    Label3: TLabel;
    Label4: TLabel;
    Label5: TLabel;
    Label6: TLabel;
    Label7: TLabel;
    procedure CancelBtnClick(Sender: TObject);
    procedure Label5Click(Sender: TObject);
  private
  public
  end;

var
  AboutForm: TAboutForm;

implementation

{$R *.dfm}

procedure TAboutForm.CancelBtnClick(Sender: TObject);
begin
 Close;
end;

procedure TAboutForm.Label5Click(Sender: TObject);
begin
 ShellExecute(Handle,'open','mailto:im_fry@mail.ru','','',0);
end;

end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?