J'ai trouvé, je n'avais pas pensé à chercher sur des forum en anglais :
Point location = Point.Empty;
int X = 25, Y = 30;
Point newlocation = this.pictureBox1.Location;
newlocation.X = newlocation.X + X - location.X;
newlocation.Y = newlocation.Y + Y - location.Y;
this.pictureBox1.Location = newlocation;
Ce bout de code augmente à chaque fois X de 25 et Y de 30.