D
delnus
Unregistered / Unconfirmed
GUEST, unregistred user!
我写了一个控件:TColck=Class(TShape),它的文本是系统的时间,可是在设计期和运行期
每隔5秒钟左右,发生闪烁的问题,请问如何解决?
下面是部分代码:
FTimer.OnTimer:=TimeProc;
procedure TClock.TimeProc(Sender: TObject);
begin
GetCaption;
Invalidate;
end;
function TClock.GetCaption: String;
begin
Result:=TimeToStr(Time);
end;
每隔5秒钟左右,发生闪烁的问题,请问如何解决?
下面是部分代码:
FTimer.OnTimer:=TimeProc;
procedure TClock.TimeProc(Sender: TObject);
begin
GetCaption;
Invalidate;
end;
function TClock.GetCaption: String;
begin
Result:=TimeToStr(Time);
end;