about.h
上传用户:deyixm
上传日期:2007-01-06
资源大小:43k
文件大小:1k
源码类别:

行业应用

开发平台:

Visual C++

  1. //----------------------------------------------------------------------------
  2. #ifndef aboutH
  3. #define aboutH
  4. //----------------------------------------------------------------------------
  5. #include <vclSystem.hpp>
  6. #include <vclWindows.hpp>
  7. #include <vclSysUtils.hpp>
  8. #include <vclClasses.hpp>
  9. #include <vclGraphics.hpp>
  10. #include <vclForms.hpp>
  11. #include <vclControls.hpp>
  12. #include <vclStdCtrls.hpp>
  13. #include <vclButtons.hpp>
  14. #include <vclExtCtrls.hpp>
  15. //----------------------------------------------------------------------------
  16. class TAboutBox : public TForm
  17. {
  18. __published:
  19. TPanel *Panel1;
  20. TImage *ProgramIcon;
  21. TLabel *ProductName;
  22. TLabel *Version;
  23. TLabel *Copyright;
  24. TLabel *Comments;
  25. TButton *OKButton;
  26.         TLabel *Label1;
  27.         TLabel *Label2;
  28.         TImage *Image2;
  29.         void __fastcall OKButtonClick(TObject *Sender);
  30. private:
  31. public:
  32. virtual __fastcall TAboutBox(TComponent* AOwner);
  33. };
  34. //----------------------------------------------------------------------------
  35. extern PACKAGE TAboutBox *AboutBox;
  36. //----------------------------------------------------------------------------
  37. #endif