代码如下:c# pictureBox1.Image的获得图片路径的三种方法 winform

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

2.相对路径:
Application.StartupPath;
可以得到程序根目录
string picPath=Application.StartupPath+"\\1.gif";

3.获得网络图片的路径

this.pictureBox2.Image= Image.FromStream(System.Net.WebRequest.Create(http://www.xyhhxx.com/images/logo/logo.gif).GetResponse().GetResponseStream());

posted on 2010-01-06 10:34  努力实现目标  阅读(28844)  评论(0编辑  收藏  举报