【声明】转载自:http://blog.csdn.net/cyy089074316/article/details/7270741

1.绝对路径: 
this.pictureBox2.Image=Image.FromFile("D:\\001.jpg"); 

2.相对路径: 
Application.StartupPath;  
可以得到程序根目录  
this.pictureBox2.Image=Image.FromFile(Application.StartupPath "\\1.gif"); 

3.获得网络图片的路径 
法一:this.pictureBox2.Image= Image.FromStream(System.Net.WebRequest.Create(http://www.pxkt.com/logo.gif).GetResponse().GetResponseStream());

法二:is.pictureBox1.ImageLocation = "http://b.hiphotos.baidu.com/news/pic/item/c995d143ad4bd113db3dc15658afa40f4afb05e5.jpg";

 

 

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-01-02
  • 2022-01-02
  • 2021-12-08
  • 2022-12-23
  • 2021-11-26
猜你喜欢
  • 2022-01-02
  • 2022-01-30
  • 2022-12-23
  • 2022-12-23
  • 2021-07-19
相关资源
相似解决方案