在C#中鼠标悬停时更改PictureBox的背景图像?

时间:2012-05-05 14:05:03

标签: c# mouseevent picturebox

当我将鼠标悬停在C#上时,如何更改PictureBox的背景图像? 我正在使用visual c#2010 Express。 感谢

2 个答案:

答案 0 :(得分:4)

您只需订阅MouseHover Event即可更改图片属性。

这应该可以解决问题:

PictureBox o = new PictureBox();
o.MouseHover += (a_sender, a_args) =>
{
    PictureBox pic = a_sender as PicureBox;
    pic.Image = null // New Image..
};

再次当您需要恢复上一张图片时使用:MouseLeave

答案 1 :(得分:0)

在PictureBox属性上,双击事件MouseEnter并使用:

(sender as PictureBox).Image = Image.FromFile(// path of image1);

然后双击事件MouseLeave并使用:

(sender as PictureBox).Image = Image.FromFile(// path of image2);