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

Delphi/CppBuilder

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #ifndef AnimateH
  3. #define AnimateH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ComCtrls.hpp>
  10. #include <ExtCtrls.hpp>
  11. //---------------------------------------------------------------------------
  12. class TForm1 : public TForm
  13. {
  14. __published: // IDE-managed Components
  15.         TLabel *Label1;
  16.         TLabel *Label2;
  17.         TLabel *Label3;
  18.         TLabel *Label4;
  19.         TLabel *Label5;
  20.         TAnimate *Animate1;
  21.         TListBox *ListBox1;
  22.         TCheckBox *CheckBox1;
  23.         TEdit *Edit1;
  24.         TEdit *Edit2;
  25.         TEdit *Edit3;
  26.         TEdit *Edit4;
  27.         TEdit *Edit5;
  28.         TTimer *Timer1;
  29.         void __fastcall FormCreate(TObject *Sender);
  30.         void __fastcall Timer1Timer(TObject *Sender);
  31.         void __fastcall CheckBox1Click(TObject *Sender);
  32.         void __fastcall ListBox1Click(TObject *Sender);
  33.         void __fastcall Edit3Change(TObject *Sender);
  34.         void __fastcall Edit4Change(TObject *Sender);
  35.         void __fastcall Edit5Change(TObject *Sender);
  36.         void __fastcall ListBox1DblClick(TObject *Sender);
  37. private: // User declarations
  38. public: // User declarations
  39.         __fastcall TForm1(TComponent* Owner);
  40. };
  41. //---------------------------------------------------------------------------
  42. extern PACKAGE TForm1 *Form1;
  43. //---------------------------------------------------------------------------
  44. #endif
  45.