跑马灯(时间组件实现效果WinForm(timer组件))

 private void timer1_Tick(object sender, EventArgs e)
        {
            label1.Text = label1.Text.Substring(label1.Text.Length - 1) +label1.Text.Substring(0, label1.Text.Length - 1);
        }

原文地址:https://www.cnblogs.com/haimingkaifa/p/5362087.html