标签:
1 for (int i = 0; i < 3; i++) 2 { 3 Point p = this.FindForm().Location; 4 this.FindForm().Location = new Point(p.X +10,p.Y+10); 5 Thread.Sleep(30); 6 this.FindForm().Location = p; 7 Thread.Sleep(30); 8 }
标签:
原文地址:http://www.cnblogs.com/ztb123/p/4514765.html