C# winform滚动字幕效果
程序员文章站
2022-03-25 17:33:03
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; } }
在窗体的定时器上编写上面的代码就可以看到效果了。
上一篇: P1637 三元上升子序列