重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
文字写在label的caption属性中,调用timer()函数
创新互联拥有一支富有激情的企业网站制作团队,在互联网网站建设行业深耕10年,专业且经验丰富。10年网站优化营销经验,我们已为上千中小企业提供了成都做网站、成都网站设计、成都外贸网站建设解决方案,按需定制开发,设计满意,售后服务无忧。所有客户皆提供一年免费网站维护!
附上我写的左右往复运动代码,实现image1在picture1中左右往复运动
Private
Sub
Timer1_Timer()
If
Image1.Left
=
Picture1.ScaleWidth
-
Image1.Width
Then
k
=
1
If
k
=
1
Then
Image1.Left
=
Image1.Left
-
50
Else
Image1.Left
=
Image1.Left
+
50
End
If
If
Image1.Left
=
Then
k
=
End
Sub
最简单的,就是在上面放一个label,用Timer定时器控件控件这个label的移动
private void button1_Click(object sender, EventArgs e)
{
Timer t = new Timer();
t.Interval = 50;
int n = 0;
int w = this.label1.Width;
t.Tick += (s, ee) =
{
n += 10;
int d = this.Width - w;
this.label1.Left = n % d;
};
t.Start();
}