欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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;
            }
        }

在窗体的定时器上编写上面的代码就可以看到效果了。