码迷,mamicode.com
首页 > Windows程序 > 详细

Winform下pictruebox控件加载网络图片

时间:2016-10-15 13:54:47      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:

1 string s = "http://www.google.com/intl/zh-CN_ALL/images/logo.gif";
2 System.Net.HttpWebRequest req = (System.Net.HttpWebRequest)System.Net.HttpWebRequest.Create(s);
3 System.Net.HttpWebResponse res = (System.Net.HttpWebResponse)req.GetResponse();
4 this.pictureBox1.Image = Image.FromStream(res.GetResponseStream()); 

 

Winform下pictruebox控件加载网络图片

标签:

原文地址:http://www.cnblogs.com/shenbing/p/5963006.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!