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

RichEdit

开发平台:

Delphi

  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 "RichView.hpp"
  10. #include "RVScroll.hpp"
  11. #include "RVStyle.hpp"
  12. #include <ExtCtrls.hpp>
  13. #include <Graphics.hpp>
  14. //---------------------------------------------------------------------------
  15. class TForm1 : public TForm
  16. {
  17. __published: // IDE-managed Components
  18.     TImage *Image1;
  19.     TImage *Image2;
  20.     TLabel *Label1;
  21.     TRichView *RichView1;
  22.     TRVStyle *RVStyle1;
  23.     void __fastcall FormCreate(TObject *Sender);
  24.     void __fastcall RichView1Jump(TObject *Sender, int id);
  25. private: // User declarations
  26. public: // User declarations
  27.     __fastcall TForm1(TComponent* Owner);
  28. };
  29. //---------------------------------------------------------------------------
  30. extern PACKAGE TForm1 *Form1;
  31. //---------------------------------------------------------------------------
  32. #endif