作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发 Delphi -7
中的自定义组件我有一些published
特性
private
{ Private declarations }
FFolderzip ,Fimagezip,Ftextzip,FActivatezipComp : Boolean;
FMessagebo : string;
published
{ Published declarations }
{component Properties}
{#1.Folder Zip}
property ZipFolder : Boolean read FFolderzip write FFolderzip default False;
{#2.Send imagezip ?}
property ZipImage : Boolean read Fimagezip write Fimagezip default False;
{#3.text files}
property ZipText : Boolean read Ftextzip write Ftextzip default False;
{#4.message}
property ZipMessage: String read FMessagebo write FMessagebo ;
{#5.Activate }
property ActivateZipper: Boolean read FActivatezipComp write FActivatezipComp Default false;
end;
ActivateZipper
属性为用户提供了激活/启用或停用/禁用组件执行的选项。
CreateATextFileProc
将在应用程序文件夹中创建文件。因此,如果我在构造函数中检查
ActivateZipper
是真的还是假的。。
constructor
constructor TcomProj.Create(aOwner: TComponent);
begin
inherited;
if ActivateZipper then CreateATextFileProc;
end;
ActivateZipper
即使我在对象检查器中将其设置为 true,它也始终为 false。
最佳答案
构造函数为时过早。设计时属性值尚未流入组件。您需要等到组件的 Loaded()
在您可以对这些值采取行动之前调用方法。如果您在运行时动态创建组件,您还需要一个属性 setter ,因为没有 DFM 值,因此 Loaded()
不会被调用。
type
TcomProj = class(TComponent)
private
...
procedure SetActivateZipper(Value: Boolean);
protected
procedure Loaded; override;
published
property ActivateZipper: Boolean read FActivatezipComp write SetActivateZipper;
end;
procedure TcomProj.SetActivateZipper(Value: Boolean);
begin
if FActivatezipComp <> Value then
begin
FActivatezipComp := Value;
if ActivateZipper and ((ComponentState * [csDesigning, csLoading, csLoading]) = []) then
CreateATextFileProc;
end;
end;
procedure TcomProj.Loaded;
begin
inherited;
if ActivateZipper then CreateATextFileProc;
end;
关于delphi - 禁用/停用具有已发布属性的自定义组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11259487/
我是一名优秀的程序员,十分优秀!