以编程方式将我的资源中的图片设置为PictureBox

时间:2010-10-02 11:42:06

标签: c# winforms picturebox

如何在代码中将图片设置为PictureBox

下面的代码给出了错误:

  

无法隐式转换Bitmap   字符串。

    private void ptbLocalidadAdd_MouseEnter(object sender, EventArgs e)
    {
        ptbLocalidadAdd.ImageLocation = Properties.Resources.addg;
    }

1 个答案:

答案 0 :(得分:3)

如果资源是位图,这应该有效:

ptbLocalidadAdd.Image = Properties.Resources.addg;