winform技巧—滚动的字幕
void Start() { string str = label1.Text; char a = str[0]; string b = str.Substring(1); label1.Text = b + a; }