FLabel.h
资源名称:FLabel.rar [点击查看]
上传用户:hnxhmj
上传日期:2020-10-13
资源大小:14k
文件大小:1k
源码类别:
Static控件
开发平台:
C++ Builder
- //---------------------------------------------------------------------------
- #ifndef FLabelH
- #define FLabelH
- //---------------------------------------------------------------------------
- #include <SysUtils.hpp>
- #include <Controls.hpp>
- #include <Classes.hpp>
- #include <Forms.hpp>
- #include <StdCtrls.hpp>
- //---------------------------------------------------------------------------
- class PACKAGE TFLabel : public TLabel
- {
- private:
- int FTextSpace;
- void __fastcall SetTextSpace(int Value);
- int FBorder;
- void __fastcall SetBorder(int Value);
- protected:
- DYNAMIC void __fastcall DoDrawText(TRect &Rect, int Flags);
- void __fastcall TFLabel::Paint();
- public:
- __fastcall TFLabel(TComponent* Owner);
- __published:
- __property int __fastcall TextSpace = {read=FTextSpace,write=SetTextSpace,default=0};
- __property int __fastcall Border = {read=FBorder,write=SetBorder,default=0};
- };
- //---------------------------------------------------------------------------
- #endif