使用ImageLocation

时间:2018-11-30 15:09:07

标签: c# .net picturebox

我试图使用ImageLocaton属性从PictureBox中打开图像,因为我希望将来将图像存储在在线数据库中。

我尝试了这段代码,但说pictureBox1.ImageLocation.ToString()为空:

private void pictureBox1_Click(object sender, EventArgs e)
{
    Process.Start(pictureBox1.ImageLocation.ToString());
} 

我也在“属性”标签中看到了它,但是为什么呢?

I also have seen it in the properties tab, but why?

1 个答案:

答案 0 :(得分:0)

您只需要设置pictureBox的ImageLocation即可设置其Image(如果未设置,则不会获得明显为null的图像):

pictureBox1.ImageLocation = someurl;