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

Delphi/CppBuilder

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #ifndef TxtRtfH
  3. #define TxtRtfH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. #include <Controls.hpp>
  7. #include <StdCtrls.hpp>
  8. #include <Forms.hpp>
  9. #include <ComCtrls.hpp>
  10. #include <Dialogs.hpp>
  11. //---------------------------------------------------------------------------
  12. class TForm1 : public TForm
  13. {
  14. __published: // IDE-managed Components
  15.         TRichEdit *RichEdit1;
  16.         TButton *Button1;
  17.         TOpenDialog *OpenDialog1;
  18.         TSaveDialog *SaveDialog1;
  19.         TButton *Button2;
  20.         void __fastcall FormCreate(TObject *Sender);
  21.         void __fastcall Button1Click(TObject *Sender);
  22.         void __fastcall Button2Click(TObject *Sender);
  23.         void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
  24. private: // User declarations
  25. public: // User declarations
  26.         __fastcall TForm1(TComponent* Owner);
  27. };
  28. //---------------------------------------------------------------------------
  29. extern PACKAGE TForm1 *Form1;
  30. //---------------------------------------------------------------------------
  31. #endif
  32.