如何在代码中将图片设置为PictureBox?
下面的代码给出了错误:
无法隐式转换Bitmap 字符串。
private void ptbLocalidadAdd_MouseEnter(object sender, EventArgs e)
{
ptbLocalidadAdd.ImageLocation = Properties.Resources.addg;
}
答案 0 :(得分:3)
如果资源是位图,这应该有效:
ptbLocalidadAdd.Image = Properties.Resources.addg;