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

RichEdit

开发平台:

Delphi

  1. //---------------------------------------------------------------------------
  2. #ifndef PropFrmH
  3. #define PropFrmH
  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. //---------------------------------------------------------------------------
  12. class TfrmProp : public TForm
  13. {
  14. __published: // IDE-managed Components
  15.     TLabel *Label1;
  16.     TLabel *Label3;
  17.     TPageControl *PageControl1;
  18.     TTabSheet *tsBullet;
  19.     TRadioGroup *rgBullet;
  20.     TTabSheet *tsHotspot;
  21.     TRadioGroup *rgHotspot;
  22.     TTabSheet *tsPicture;
  23.     TImage *Image1;
  24.     TButton *btnChangePicture;
  25.     TRadioGroup *rgPicVAlign;
  26.     TTabSheet *tsText;
  27.     TLabel *lblText;
  28.     TTabSheet *tsComponent;
  29.     TLabel *lblComponent;
  30.     TLabel *Label2;
  31.     TLabel *Label4;
  32.     TEdit *txtWidth;
  33.     TEdit *txtHeight;
  34.     TRadioGroup *rgCtrlVAlign;
  35.     TTabSheet *tsBreak;
  36.     TLabel *Label5;
  37.     TEdit *txtBreakWidth;
  38.     TRadioGroup *rgBreakColor;
  39.     TButton *btnOk;
  40.     TButton *btnCancel;
  41.     TEdit *txtTag;
  42.     TEdit *txtName;
  43.     void __fastcall btnChangePictureClick(TObject *Sender);
  44.     
  45. private: // User declarations
  46. public: // User declarations
  47.     __fastcall TfrmProp(TComponent* Owner);
  48. };
  49. //---------------------------------------------------------------------------
  50. extern TfrmProp *frmProp;
  51. //---------------------------------------------------------------------------
  52. #endif