通过实例看VCL组件开发全过程(二)[11]

[入库:2005年8月18日] [更新:2007年3月25日]

本文简介:选择自 hkbarton 的 blog

  if assigned(fontimeup) then

   fontimeup(self);

 end;

end;

 

procedure tclock.resetbackclock;

var

 i:integer;

begin

 if state=strunclock then

 begin

  active:=false;

  for i:=1 to 8 do rcd[i]:=0;

  caption:='00:00:00:00';

 end;

end;

 

procedure tclock.resetrunclock;

begin

 if state=stbackclock then

 begin

  active:=false;

  caption:=begintime;

 end;

end;

 

本文关键:VCL,组件开发
 

本站最佳浏览方式为 分辨率 1024x768 IE 6.0(或更高版本的 IE浏览器)

go top