我将鼠标事件 MouseEnter 和 MouseLeave 与图片框一起使用。背景颜色会随着鼠标进入而改变,但不会随着鼠标离开事件而正常改变。
public void pictureBox1_MouseEnter(object sender, EventArgs e)
{
pictureBox1.BackColor = Color.Blue;
}
public void pictureBox1_MouseLeave(object sender, EventArgs e)
{
pictureBox1.BackColor = SystemColors.Control;
}