Random ran = new Random((int)DateTime.Now.Ticks);
Point point = this.Location;
for (int i = 0; i < 37; i++)
{
this.Location = new Point(point.X + ran.Next(23) - 4, point.Y + ran.Next(23) - 4);
System.Threading.Thread.Sleep(15);
label1.Location = point;
// this.Location = point;
System.Threading.Thread.Sleep(15);
}
怎么改抖动label