单选题
窗体上有一个名称为Timer1的计时器控件,一个名称为Shape1形状控件,其Shape属性值为3(Circle)。编写程序如下:
Private Sub Form_Load()
Shape1. Top=0
Timer1. Interval=100
End Sub
Private Sub Timer1_Timer()
Static x As Integer
Shape1. Top=Shape1. Top+100
x=x+1
If x Mod 10=0 Then
Shape1. Top=0
End If
End Sub
以下关于上述程序的叙述中,错误的是______。