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

Delphi/CppBuilder

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #ifndef MemoControlH
  3. #define MemoControlH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <Dialogs.hpp>
  10. //---------------------------------------------------------------------------
  11. class TForm1 : public TForm
  12. {
  13. __published: // IDE-managed Components
  14.         TMemo *Memo1;
  15.         TButton *Button1;
  16.         TButton *Button2;
  17.         TButton *Button3;
  18.         TButton *Button4;
  19.         TOpenDialog *OpenDialog1;
  20.         TSaveDialog *SaveDialog1;
  21.         TFontDialog *FontDialog1;
  22.         TColorDialog *ColorDialog1;
  23.         void __fastcall FormCreate(TObject *Sender);
  24.         void __fastcall Button1Click(TObject *Sender);
  25.         void __fastcall Button2Click(TObject *Sender);
  26.         void __fastcall Button3Click(TObject *Sender);
  27.         void __fastcall Button4Click(TObject *Sender);
  28. private: // User declarations
  29. public: // User declarations
  30.         __fastcall TForm1(TComponent* Owner);
  31. };
  32. //---------------------------------------------------------------------------
  33. extern PACKAGE TForm1 *Form1;
  34. //---------------------------------------------------------------------------
  35. #endif
  36.