Unit1.h
上传用户:lulishicai
上传日期:2010-03-01
资源大小:13202k
文件大小: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 <OleCtrls.hpp>
  10. #include <vcfi.hpp>
  11. #include <VCFI.hpp>
  12. //---------------------------------------------------------------------------
  13. class TForm1 : public TForm
  14. {
  15. __published: // IDE-managed Components
  16.         TVtChart *VtChart1;
  17.         TButton *Button1;
  18.         TButton *Button2;
  19.         TButton *Button3;
  20.         TComboBox *ComboBox1;
  21.         void __fastcall FormCreate(TObject *Sender);
  22.         void __fastcall Button1Click(TObject *Sender);
  23.         void __fastcall Button2Click(TObject *Sender);
  24.         void __fastcall Button3Click(TObject *Sender);
  25.         void __fastcall ComboBox1Click(TObject *Sender);
  26. private: // User declarations
  27. public: // User declarations
  28.         __fastcall TForm1(TComponent* Owner);
  29. };
  30. //---------------------------------------------------------------------------
  31. extern PACKAGE TForm1 *Form1;
  32. //---------------------------------------------------------------------------
  33. #endif
  34.