private void timer1_Tick(object sender, EventArgs e) { label1.Left -= 2; if (label1.Right < 0) { label1.Left = this.Width; } }
在窗体的定时器上编写上面的代码就可以看到效果了。
2021-11-11 08:10:37
private void timer1_Tick(object sender, EventArgs e) { label1.Left -= 2; if (label1.Right < 0) { label1.Left = this.Width; } }
在窗体的定时器上编写上面的代码就可以看到效果了。
下一篇:api