Unit1.h
上传用户:cqslgg
上传日期:2009-12-10
资源大小:128k
文件大小:1k
源码类别:

Delphi/CppBuilder

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #ifndef Unit1H
  3. #define Unit1H
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ExtCtrls.hpp>
  10. //---------------------------------------------------------------------------
  11. class TForm1 : public TForm
  12. {
  13. __published: // IDE-managed Components
  14.         TPanel *Panel1;
  15.         TImage *Image1;
  16.         void __fastcall Image1Click(TObject *Sender);
  17.         void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
  18.         void __fastcall FormHide(TObject *Sender);
  19. private: // User declarations
  20. bool stoploop;
  21. public: // User declarations
  22.         __fastcall TForm1(TComponent* Owner);
  23. };
  24. //---------------------------------------------------------------------------
  25. extern PACKAGE TForm1 *Form1;
  26. //---------------------------------------------------------------------------
  27. #endif