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

VC书籍

开发平台:

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. //---------------------------------------------------------------------------
  10. class TForm1 : public TForm
  11. {
  12. __published: // IDE-managed Components
  13.         TButton *Button1;
  14.         TEdit *Edit1;
  15.         TLabel *Label1;
  16.         TRadioButton *RadioButton1;
  17.         TButton *Button2;
  18.         TEdit *Edit2;
  19.         TLabel *Label2;
  20.         TRadioButton *RadioButton2;
  21.         TButton *Button3;
  22.         TEdit *Edit3;
  23.         TLabel *Label3;
  24.         TRadioButton *RadioButton3;
  25.         TButton *TestButton1;
  26.         TButton *TestButton2;
  27.         TButton *TestButton3;
  28.         void __fastcall TestButton1Click(TObject *Sender);
  29.         void __fastcall TestButton2Click(TObject *Sender);
  30.         void __fastcall TestButton3Click(TObject *Sender);
  31. private: // User declarations
  32. public: // User declarations
  33.         __fastcall TForm1(TComponent* Owner);
  34.         void __fastcall CloseControl(int tag);
  35. };
  36. //---------------------------------------------------------------------------
  37. extern PACKAGE TForm1 *Form1;
  38. //---------------------------------------------------------------------------
  39. #endif