求助,标签在向右移动时,前面会多一块灰色,有什么办法消除?
做了个小程序,表单Init:public b
b=80
表单Activate:
thisform.FillStyle= 0
THISFORM.FILLCOLOR = RGB(128,128,255)
thisform.Box(0,220,200,320)
增加一个Label1
left=90;top=260;BackColor=RGB(128,128,255);Caption='我向右移动'
增加一个计时器
Interval=1000
Timer:
b=b+10(或者b=b+rand()*20)
thisform.Box(0,220,200,320)
thisform.label1.Left=b
标签在向右移动时,前面会多一块灰色,这个有什么办法消除?
[此贴子已经被作者于2018-9-3 15:02编辑过]