Winform下pictruebox控件加载网络图片
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Winform下pictruebox控件加载网络图片相关的知识,希望对你有一定的参考价值。
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控件加载网络图片的主要内容,如果未能解决你的问题,请参考以下文章
winform中如何使用timer控件实现欢迎(初始加载)窗口