pictureBox控件获得图片路径的三种方法及自适应大小属性

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());

自适应大小属性:BackGroundImageLayout=Stretch,SizeMode=StretchImage

上一篇:数据的双向绑定 Angular JS


下一篇:Xamarin+Prism开发详解二:Xaml文件如何简单绑定Resources资源文件内容