C# winform滚动字幕效果
程序员文章站
2022-06-22 07:59:06
private void timer1_Tick(object sender, EventArgs e) { label1.Left -= 2; if (label1.Right < 0) { label1.Left = this.Width; } } 在窗体的定时器上编写上面的代码就可以看到效果了 ......
private void timer1_tick(object sender, eventargs e) { label1.left -= 2; if (label1.right < 0) { label1.left = this.width; } }
在窗体的定时器上编写上面的代码就可以看到效果了。