picturebox un MouseEnter ve MouseLeave olaylarına aşağıdaki kodları yazabilirsin ne kadar büyeyeceğini benim 10 yazdığım yerden değiştirebilirsin.

private void pictureBox1_MouseEnter(object sender, EventArgs e)
{
pictureBox1.Height += 10;
pictureBox1.Width += 10;

}

private void pictureBox1_MouseLeave(object sender, EventArgs e)
{
pictureBox1.Height -= 10;
pictureBox1.Width -= 10;
}