M
midi
Unregistered / Unconfirmed
GUEST, unregistred user!
我想实现一幅图从中间向两边拉开的效果,编写了以下的语句。(抄来的)
procedure TForm1.Timer1Timer(Sender: TObject);
begin
if (image1.Left>0) then // 或其它的值。
begin
image1.Left:=image1.Left-1;
image1.Width:=image1.Width+2;
end
else
timer1.Enabled:=false;
end;
一个图形控件,一为timer控件。timer控件每执行一次,图形就闪烁一次,
怎样解决这个总是呢!
希望能提供部分源程!
十分感谢!
procedure TForm1.Timer1Timer(Sender: TObject);
begin
if (image1.Left>0) then // 或其它的值。
begin
image1.Left:=image1.Left-1;
image1.Width:=image1.Width+2;
end
else
timer1.Enabled:=false;
end;
一个图形控件,一为timer控件。timer控件每执行一次,图形就闪烁一次,
怎样解决这个总是呢!
希望能提供部分源程!
十分感谢!