ABOUT.PAS
上传用户:oceanht
上传日期:2014-03-26
资源大小:1376k
文件大小:0k
源码类别:

其他数据库

开发平台:

Delphi

  1. unit about;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  5.   StdCtrls, ExtCtrls;
  6. type
  7.   TAboutForm = class(TForm)
  8.     Panel1: TPanel;
  9.     Label1: TLabel;
  10.     Label2: TLabel;
  11.     Label3: TLabel;
  12.     Label4: TLabel;
  13.     Button1: TButton;
  14.   private
  15.     { Private declarations }
  16.   public
  17.     { Public declarations }
  18.   end;
  19. var
  20.   AboutForm: TAboutForm;
  21. implementation
  22. {$R *.DFM}
  23. end.