Solved
I am trying to simulate a planet rotating a star. I am currently aware of the syntax to move the picture box (I have this in a timer so it is repeated)
private void rotate_timer(object sender, EventArgs e) {
picturebox1.location = new point (picturebox1.location.x + 1,
picturebox1.location.y + 1);
}
But I don't know where to start so that it rotates around a specific point. How would I go about rotating it around (0,0)?
This may help:
Pick your timer
Interval
and don't be disappointed that it will look a little uneven. Winforms is really bad at animation..If you want the image to rotate as well you can find an example here.