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

Delphi控件源码

开发平台:

Delphi

  1. //---------------------------------------------------------------------------
  2. #ifndef AboutH
  3. #define AboutH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ExtCtrls.hpp>
  10. //---------------------------------------------------------------------------
  11. class TAboutBox : public TForm
  12. {
  13. __published: // IDE-managed Components
  14.         TPanel *Panel1;
  15.         TImage *ProgramIcon;
  16.         TLabel *ProductName;
  17.         TLabel *Version;
  18.         TLabel *Copyright;
  19.         TLabel *Comments;
  20.         TButton *OKButton;
  21. private: // User declarations
  22. public: // User declarations
  23.         __fastcall TAboutBox(TComponent* Owner);
  24. };
  25. //---------------------------------------------------------------------------
  26. extern PACKAGE TAboutBox *AboutBox;
  27. //---------------------------------------------------------------------------
  28. #endif