about.pas
上传用户:hylc_2004
上传日期:2014-01-23
资源大小:46800k
文件大小:0k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. unit About;
  2. interface
  3. uses Windows, Classes, Graphics, Forms, Controls, StdCtrls,
  4.   Buttons, ExtCtrls;
  5. type
  6.   TAboutBox = class(TForm)
  7.     Panel1: TPanel;
  8.     OKButton: TButton;
  9.     ProgramIcon: TImage;
  10.     ProductName: TLabel;
  11.     Version: TLabel;
  12.     Copyright: TLabel;
  13.     Comments: TLabel;
  14.   private
  15.     { Private declarations }
  16.   public
  17.     { Public declarations }
  18.   end;
  19. var
  20.   AboutBox: TAboutBox;
  21. implementation
  22. {$R *.DFM}
  23. end.
  24.