Changer la position de l'objet

//sets the coordinates of the upper-left corner of the control relative to the upper-left corner of its container.
panel1.Location = new Point(56,72);
panel1.Size = new Size(264, 152);
Clean Cow