Unit2.h
上传用户:lhxd_sz
上传日期:2014-10-02
资源大小:38814k
文件大小:1k
源码类别:

VC书籍

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #ifndef Unit2H
  3. #define Unit2H
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. //---------------------------------------------------------------------------
  10. class TForm2 : public TForm
  11. {
  12. __published: // IDE-managed Components
  13.         TButton *Button1;
  14.         TButton *Button2;
  15.         TButton *Button3;
  16.         TButton *Button4;
  17.         TButton *Button5;
  18.         TButton *Button6;
  19.         TButton *Button7;
  20.         TButton *Button8;
  21.         TButton *Button9;
  22.         TButton *Button10;
  23.         void __fastcall FormDblClick(TObject *Sender);
  24. private: // User declarations
  25. public: // User declarations
  26.         __fastcall TForm2(TComponent* Owner);
  27. };
  28. //---------------------------------------------------------------------------
  29. extern PACKAGE TForm2 *Form2;
  30. //---------------------------------------------------------------------------
  31. #endif