相关代码 |
|
再增加一个几何(Shape)控件 把定时器事件的代码改为 procedure TForm1.Timer1Timer(Sender: TObject); begin if Label1.Caption='向上' then Shape1.Top:=Shape1.Top-5; if Label1.Caption='向左' then Shape1.Left:=Shape1.Left-5; if Label1.Caption='向下' then Shape1.Top:=Shape1.Top+5; if Label1.Caption='向右' then Shape1.Left:=Shape1.Left+5; end;