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控件加载网络图片的主要内容,如果未能解决你的问题,请参考以下文章

c#winform怎么把控件背景设为半透明,像这样

winform中如何使用timer控件实现欢迎(初始加载)窗口

C#WinForm在新线程中动态创建控件时,gif图动不动

在C#的winform中,如何快速加载窗体,避免控件的背景图片闪烁?

WinFrom通过委托传递事件

在c#winform中如何做出导航菜单,其效果如下图: