private void timer1_Tick(object sender, System.EventArgs e)//实现文字的滚动
{
this.label7.Location = new Point(label7.Location.X + 1, label7.Location.Y);
if(this.label7.Text.Length>10){this.label7.Location = new Point(label7.Location.X, label7.Location.Y);timer1_Tick(sender,e);}
}这样为什么不可以实现文字的循环滚动呢?