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

Delphi/CppBuilder

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #ifndef ClipH
  3. #define ClipH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ExtCtrls.hpp>
  10. #include <Dialogs.hpp>
  11. #include <ExtDlgs.hpp>
  12. #include <Buttons.hpp>
  13. #include <ComCtrls.hpp>
  14. //---------------------------------------------------------------------------
  15. class TForm1 : public TForm
  16. {
  17. __published: // IDE-managed Components
  18.         TButton *Button1;
  19.         TButton *Button2;
  20.         TOpenDialog *OpenDialog1;
  21.         TOpenPictureDialog *OpenPictureDialog1;
  22.         TButton *Button3;
  23.         TButton *Button4;
  24.         TButton *Button5;
  25.         TBitBtn *BitBtn1;
  26.         TRichEdit *RichEdit1;
  27.         TButton *Button6;
  28.         void __fastcall Button1Click(TObject *Sender);
  29.         void __fastcall Button2Click(TObject *Sender);
  30.         void __fastcall Button3Click(TObject *Sender);
  31.         void __fastcall Button4Click(TObject *Sender);
  32.         void __fastcall Button5Click(TObject *Sender);
  33.         void __fastcall FormCreate(TObject *Sender);
  34.         void __fastcall Button6Click(TObject *Sender);
  35. private: // User declarations
  36. public: // User declarations
  37.         __fastcall TForm1(TComponent* Owner);
  38. };
  39. //---------------------------------------------------------------------------
  40. extern PACKAGE TForm1 *Form1;
  41. //---------------------------------------------------------------------------
  42. #endif