ABOUT.PAS
上传用户:wk1985825
上传日期:2010-01-27
资源大小:102k
文件大小:1k
源码类别:

Modem编程

开发平台:

Delphi

  1. unit About;
  2. interface
  3. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
  4.   Buttons, ExtCtrls;
  5. type
  6.   TAboutBox = class(TForm)
  7.     Panel1: TPanel;
  8.     Panel2: TPanel;
  9.     Panel3: TPanel;
  10.     pnVersion: TPanel;
  11.     BitBtn1: TBitBtn;
  12.     Bevel1: TBevel;
  13.     Image1: TImage;
  14.     procedure BitBtn1Click(Sender: TObject);
  15.   private
  16.     { Private declarations }
  17.   public
  18.     { Public declarations }
  19.   end;
  20. implementation
  21. {$R *.DFM}
  22. procedure TAboutBox.BitBtn1Click(Sender: TObject);
  23. begin
  24.   Close;
  25. end;
  26. end.