AboutUnit.pas
上传用户:xgd119
上传日期:2007-05-02
资源大小:514k
文件大小:1k
源码类别:

P2P编程

开发平台:

Delphi

  1. unit AboutUnit;
  2. interface
  3. uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
  4.   Buttons, ExtCtrls;
  5. type
  6.   TAboutBox = class(TForm)
  7.     Panel1: TPanel;
  8.     ProgramIcon: TImage;
  9.     ProductName: TLabel;
  10.     Version: TLabel;
  11.     Copyright: TLabel;
  12.     OKButton: TButton;
  13.     Label1: TLabel;
  14.     Label2: TLabel;
  15.     Label3: TLabel;
  16.     Label4: TLabel;
  17.     procedure OKButtonClick(Sender: TObject);
  18.   private
  19.     { Private declarations }
  20.   public
  21.     { Public declarations }
  22.   end;
  23. implementation
  24. {$R *.dfm}
  25. procedure TAboutBox.OKButtonClick(Sender: TObject);
  26. begin
  27.   self.close;
  28. end;
  29. end.
  30.