Когда я навожу на них курсор, они вращаются. Я использую System.Drawing.Image.RotateFlip(RotateFlipType).
Похоже, что вращается только центр шестерни, но края статичны.

private void rotationTimer_Tick(object sender, EventArgs e)
{
Image flipImage = pictureBox1.Image;
flipImage.RotateFlip(RotateFlipType.Rotate90FlipXY);
pictureBox1.Image = flipImage;
}
private void rotationTimer2_Tick(object sender, EventArgs e)
{
Image flipImage = pictureBox2.Image;
flipImage.RotateFlip(RotateFlipType.Rotate90FlipNone);
pictureBox2.Image = flipImage;
}
private void rotationTimer3_Tick(object sender, EventArgs e)
{
Image flipImage = pictureBox3.Image;
flipImage.RotateFlip(RotateFlipType.Rotate270FlipXY);
pictureBox3.Image = flipImage;
}
private void pictureBox1_MouseHover(object sender, EventArgs e)
{
rotationTimer.Start();
rotationTimer2.Start();
rotationTimer3.Start();
} //etc...
Подробнее здесь: https://stackoverflow.com/questions/537 ... the-bitmap