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

RichEdit

开发平台:

Delphi

  1. //---------------------------------------------------------------------------
  2. #ifndef Demo6FrmH
  3. #define Demo6FrmH
  4. //---------------------------------------------------------------------------
  5. #include <vclClasses.hpp>
  6. #include <vclControls.hpp>
  7. #include <vclStdCtrls.hpp>
  8. #include <vclForms.hpp>
  9. #include "RichView.hpp"
  10. #include "RVScroll.hpp"
  11. #include "RVStyle.hpp"
  12. #include <vclExtCtrls.hpp>
  13. //---------------------------------------------------------------------------
  14. class TfrmDemo6 : public TForm
  15. {
  16. __published: // IDE-managed Components
  17.     TButton *Close;
  18.     TRichView *rv;
  19.     TRVStyle *rvs;
  20.     TTimer *tmr;
  21.     TImageList *il;
  22.     void __fastcall FormCreate(TObject *Sender);
  23.     void __fastcall tmrTimer(TObject *Sender);
  24. private: // User declarations
  25.     unsigned char Red;
  26.     char DRed;
  27.     int ImageIndex;
  28. public: // User declarations
  29.     __fastcall TfrmDemo6(TComponent* Owner);
  30. };
  31. //---------------------------------------------------------------------------
  32. extern TfrmDemo6 *frmDemo6;
  33. //---------------------------------------------------------------------------
  34. #endif