about.h
上传用户:lulishicai
上传日期:2010-03-01
资源大小:13202k
文件大小:1k
源码类别:

Delphi/CppBuilder

开发平台:

C++ Builder

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