aboutme.~pas

来自「结于初学者来说这对数据库是一个很好的例子」· ~PAS 代码 · 共 51 行

~PAS
51
字号
unit aboutme;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, ExtCtrls,ShellAPI, StdCtrls, ToolWin, ComCtrls;

type
  TForm6 = class(TForm)
    CoolBar1: TCoolBar;
    Label1: TLabel;
    Label6: TLabel;
    Shape1: TShape;
    Shape2: TShape;
    Shape3: TShape;
    Shape4: TShape;
    Label2: TLabel;
    Label3: TLabel;
    Label4: TLabel;
    Label5: TLabel;
    Label7: TLabel;
    Button1: TButton;
    Image1: TImage;
    procedure Button1Click(Sender: TObject);
    procedure Label7Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form6: TForm6;

implementation

{$R *.dfm}

procedure TForm6.Button1Click(Sender: TObject);
begin
  Form6.Close;
end;

procedure TForm6.Label7Click(Sender: TObject);
begin
    ShellExecute(Handle,nil,PChar('mailto:wangyuejiu@sohu.com'),nil,nil,SW_NORMAL);
end;

end.

⌨️ 快捷键说明

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