TEMainFrm.h
上传用户:daoqigc
上传日期:2021-04-20
资源大小:2795k
文件大小:1k
源码类别:

RichEdit

开发平台:

Delphi

  1. //---------------------------------------------------------------------------
  2. #ifndef TEMainFrmH
  3. #define TEMainFrmH
  4. //---------------------------------------------------------------------------
  5. #include <vclClasses.hpp>
  6. #include <vclControls.hpp>
  7. #include <vclStdCtrls.hpp>
  8. #include <vclForms.hpp>
  9. #include <vclExtCtrls.hpp>
  10. #include "RVEdit.hpp"
  11. #include "RichView.hpp"
  12. #include "RVScroll.hpp"
  13. #include "RVStyle.hpp"
  14. //---------------------------------------------------------------------------
  15. class TForm1 : public TForm
  16. {
  17. __published: // IDE-managed Components
  18. TPanel *Panel1;
  19. TButton *Button1;
  20. TButton *Button2;
  21. TButton *Button4;
  22. TRichViewEdit *rve;
  23. TRVStyle *RVStyle1;
  24. void __fastcall FormCreate(TObject *Sender);
  25. void __fastcall Button4Click(TObject *Sender);
  26. void __fastcall Button1Click(TObject *Sender);
  27. void __fastcall Button2Click(TObject *Sender);
  28. private: // User declarations
  29. public: // User declarations
  30. __fastcall TForm1(TComponent* Owner);
  31. };
  32. //---------------------------------------------------------------------------
  33. extern TForm1 *Form1;
  34. //---------------------------------------------------------------------------
  35. #endif