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

Delphi/CppBuilder

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #ifndef BmpAnimateH
  3. #define BmpAnimateH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ExtCtrls.hpp>
  10. #include <Graphics.hpp>
  11. //---------------------------------------------------------------------------
  12. class TForm1 : public TForm
  13. {
  14. __published: // IDE-managed Components
  15.         TImage *Image1;
  16.         TImage *Image2;
  17.         TImage *Image3;
  18.         TTimer *Timer1;
  19.         void __fastcall FormCreate(TObject *Sender);
  20.         void __fastcall Timer1Timer(TObject *Sender);
  21.         void __fastcall FormClick(TObject *Sender);
  22. private: // User declarations
  23. public: // User declarations
  24.         __fastcall TForm1(TComponent* Owner);
  25. };
  26. //---------------------------------------------------------------------------
  27. extern PACKAGE TForm1 *Form1;
  28. //---------------------------------------------------------------------------
  29. #endif
  30.