//鼠标跟随一串文字
private void Form2_MouseMove(object sender, MouseEventArgs e) { this.label1.Location = new Point(e.X, e.Y); }