J
jacklin
Unregistered / Unconfirmed
GUEST, unregistred user!
我继承了TImage,需要在IMAGE上显示一行文字,因此增加了两个属性
property DataCaption:string read FDataCaption write SetDataCaption;//标题
property DataCaptionFont:TFont read FDataCaptionFont write SetDataCaptionFont;//标题字体
然后在Create事件中
constructor TImageEX.Create(AOwner: TComponent);
begin
FDataCaptionFont:=TFont.Create;
FDataCaptionFont.Color:=clBlue;
FDataCaptionFont.Size:=12;
FDataCaptionFont.Name:='宋体';
inherited Create(AOwner);
...
这样控件放置在窗体上时默认显示的字体是[blue]蓝色[/blue]宋体。可是,我把窗体里的DataCaptionFont属性改为[red]红色[/red]或其它颜色,设计状态下的颜色也改过来了,但是运行起来后,该字体却返回默认的[blue]蓝色[/blue]字体了,在点击图形的时候,会触发标题重写事件,此时颜色才变回[red]红色[/red]。
到底是哪里错了? 有哪里需要注意的么?
property DataCaption:string read FDataCaption write SetDataCaption;//标题
property DataCaptionFont:TFont read FDataCaptionFont write SetDataCaptionFont;//标题字体
然后在Create事件中
constructor TImageEX.Create(AOwner: TComponent);
begin
FDataCaptionFont:=TFont.Create;
FDataCaptionFont.Color:=clBlue;
FDataCaptionFont.Size:=12;
FDataCaptionFont.Name:='宋体';
inherited Create(AOwner);
...
这样控件放置在窗体上时默认显示的字体是[blue]蓝色[/blue]宋体。可是,我把窗体里的DataCaptionFont属性改为[red]红色[/red]或其它颜色,设计状态下的颜色也改过来了,但是运行起来后,该字体却返回默认的[blue]蓝色[/blue]字体了,在点击图形的时候,会触发标题重写事件,此时颜色才变回[red]红色[/red]。
到底是哪里错了? 有哪里需要注意的么?