鼠标

  //鼠标跟随一串文字

       private void Form2_MouseMove(object sender, MouseEventArgs e)
        {
            this.label1.Location = new Point(e.X, e.Y);
        }

原文地址:https://www.cnblogs.com/xuekun/p/2262729.html