Animate.h
上传用户:lulishicai
上传日期:2010-03-01
资源大小:13202k
文件大小:2k
源码类别:
Delphi/CppBuilder
开发平台:
C++ Builder
- //---------------------------------------------------------------------------
- #ifndef AnimateH
- #define AnimateH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- #include <Controls.hpp>
- #include <StdCtrls.hpp>
- #include <Forms.hpp>
- #include <ComCtrls.hpp>
- #include <ExtCtrls.hpp>
- //---------------------------------------------------------------------------
- class TForm1 : public TForm
- {
- __published: // IDE-managed Components
- TLabel *Label1;
- TLabel *Label2;
- TLabel *Label3;
- TLabel *Label4;
- TLabel *Label5;
- TAnimate *Animate1;
- TListBox *ListBox1;
- TCheckBox *CheckBox1;
- TEdit *Edit1;
- TEdit *Edit2;
- TEdit *Edit3;
- TEdit *Edit4;
- TEdit *Edit5;
- TTimer *Timer1;
- void __fastcall FormCreate(TObject *Sender);
- void __fastcall Timer1Timer(TObject *Sender);
- void __fastcall CheckBox1Click(TObject *Sender);
- void __fastcall ListBox1Click(TObject *Sender);
- void __fastcall Edit3Change(TObject *Sender);
- void __fastcall Edit4Change(TObject *Sender);
- void __fastcall Edit5Change(TObject *Sender);
- void __fastcall ListBox1DblClick(TObject *Sender);
- private: // User declarations
- public: // User declarations
- __fastcall TForm1(TComponent* Owner);
- };
- //---------------------------------------------------------------------------
- extern PACKAGE TForm1 *Form1;
- //---------------------------------------------------------------------------
- #endif