Unit1.h
上传用户:lulishicai
上传日期:2010-03-01
资源大小:13202k
文件大小:2k
源码类别:

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 "MPEGPLAYLib_OCX.h"
  10. #include <Dialogs.hpp>
  11. #include <OleCtrls.hpp>
  12. //---------------------------------------------------------------------------
  13. class TForm1 : public TForm
  14. {
  15. __published: // IDE-managed Components
  16.         TButton *Button1;
  17.         TButton *Button2;
  18.         TButton *Button3;
  19.         TButton *Button4;
  20.         TButton *Button5;
  21.         TLabel *Label1;
  22.         TLabel *Label2;
  23.         TLabel *Label3;
  24.         TLabel *Label4;
  25.         TEdit *Edit1;
  26.         TEdit *Edit2;
  27.         TEdit *Edit3;
  28.         TEdit *Edit4;
  29.         TRadioButton *RadioButton1;
  30.         TRadioButton *RadioButton2;
  31.         TOpenDialog *OpenDialog1;
  32.         TMp3Play *Mp3Play1;
  33.         void __fastcall FormCreate(TObject *Sender);
  34.         void __fastcall Button1Click(TObject *Sender);
  35.         void __fastcall RadioButton1Click(TObject *Sender);
  36.         void __fastcall RadioButton2Click(TObject *Sender);
  37.         void __fastcall Edit3KeyPress(TObject *Sender, char &Key);
  38.         void __fastcall Edit4KeyPress(TObject *Sender, char &Key);
  39.         void __fastcall Button2Click(TObject *Sender);
  40.         void __fastcall Button3Click(TObject *Sender);
  41.         void __fastcall Button4Click(TObject *Sender);
  42.         void __fastcall Button5Click(TObject *Sender);
  43. private: // User declarations
  44. public: // User declarations
  45.         __fastcall TForm1(TComponent* Owner);
  46. };
  47. //---------------------------------------------------------------------------
  48. extern PACKAGE TForm1 *Form1;
  49. //---------------------------------------------------------------------------
  50. #endif