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

RichEdit

开发平台:

Delphi

  1. //---------------------------------------------------------------------------
  2. #ifndef Demo3FrmH
  3. #define Demo3FrmH
  4. //---------------------------------------------------------------------------
  5. #include <vclClasses.hpp>
  6. #include <vclControls.hpp>
  7. #include <vclStdCtrls.hpp>
  8. #include <vclForms.hpp>
  9. #include <vclComCtrls.hpp>
  10. #include <vclExtCtrls.hpp>
  11. #include "RichView.hpp"
  12. #include "RVScroll.hpp"
  13. //---------------------------------------------------------------------------
  14. class TfrmDemo3 : public TForm
  15. {
  16. __published: // IDE-managed Components
  17.     TPageControl *PageControl1;
  18.     TTabSheet *TabSheet1;
  19.     TLabel *Label1;
  20.     TLabel *Label2;
  21.     TLabel *Label3;
  22.     TEdit *Edit1;
  23.     TEdit *Edit2;
  24.     TTabSheet *TabSheet2;
  25.     TRadioGroup *RadioGroup1;
  26.     TTabSheet *TabSheet3;
  27.     TCheckBox *CheckBox1;
  28.     TCheckBox *CheckBox2;
  29.     TCheckBox *CheckBox3;
  30.     TTabSheet *Page4;
  31.     TLabel *Label4;
  32.     TMemo *Memo1;
  33.     TRichView *rv;
  34.     TImageList *il;
  35.     void __fastcall Change(TObject *Sender);
  36.     void __fastcall FormKeyDown(TObject *Sender, WORD &Key, TShiftState Shift);
  37.     void __fastcall rvClick(TObject *Sender);
  38. private: // User declarations
  39.     void BuildSummary();
  40. public: // User declarations
  41.     __fastcall TfrmDemo3(TComponent* Owner);
  42. };
  43. //---------------------------------------------------------------------------
  44. extern TfrmDemo3 *frmDemo3;
  45. //---------------------------------------------------------------------------
  46. #endif