private void Form1_MouseMove(object sender, MouseEventArgs e)
{
    ppd2 = new Point(e.X, e.Y);
    if (isdown == true)
    {
        foreach (Control ctr in this.Controls)
        {
            var value = (Point)ctr.Tag;
            value = new Point((value.X + ppd2.X - ppd1.X), (value.Y + ppd2.Y - ppd1.Y));
            if (!ctr.Location.Equals(value))
                ctr.Location = value;
        }
    }
}