main.h
上传用户:graphite
上传日期:2020-09-09
资源大小:2587k
文件大小:1k
源码类别:

破解

开发平台:

Others

  1. //---------------------------------------------------------------------------
  2. #ifndef mainH
  3. #define mainH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ExtCtrls.hpp>
  10. //---------------------------------------------------------------------------
  11. class TfrmApp : public TForm
  12. {
  13. __published: // IDE-managed Components
  14.         TLabel *Label1;
  15.         TLabel *lStatus;
  16.         TBevel *Bevel1;
  17.         TButton *btnClose;
  18.         TButton *btnBuy;
  19.         TButton *btnRegistration;
  20.         void __fastcall FormShow(TObject *Sender);
  21.         void __fastcall btnCloseClick(TObject *Sender);
  22.         void __fastcall btnBuyClick(TObject *Sender);
  23.         void __fastcall btnRegistrationClick(TObject *Sender);
  24. private: // User declarations
  25. public: // User declarations
  26.         __fastcall TfrmApp(TComponent* Owner);
  27. };
  28. //---------------------------------------------------------------------------
  29. extern PACKAGE TfrmApp *frmApp;
  30. //---------------------------------------------------------------------------
  31. #endif