填空题

窗体中有图片框(Picture1)和计时器(Timer1)两个控件。程序运行时,将图片加载到图片框中,然后图片框以每秒一次的速度向窗体的右下角移动,每次向左、向右移动300twip。请填空。


Private Sub Form_Load()
Picture1.Picture=LoadPieture("c:\My Documents\图片\Qian1_Icon02.ico")
______
End Sub
Private Sub Timer1_Time()
Static x,y As Integer
x=x+300
y=y+300
Picture1.Move x,y
End Sub

【参考答案】

Timer1.Interval=1000
热门 试题