picturebox加载图片的方法

1.直接设置picturebox的image属性
2.使用picturebox类的load方法加载图片
 picturebox1.load(@"d:\1.jpg");
3.通过设置picturebox类的image属相来显示图片
 有两种方式:
 a.直接从文件,类似于方法2
 picturebox1.image=image.fromfile(@"d:\1.jpg");
 b.来源于流
 memorystream ms=new memorystream();
 ms.write(file,0,file.length);
 picturebox1.image=image.fromstream(ms);
 其中file是从数据库中读出来的一个byte[]

你可能感兴趣的:(picturebox加载图片的方法)