跑马灯(时间组件实现效果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);
}

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