在本地的话
用下面的方法
在窗口上加一个PictureBox picBrow,picBrow.Image=Image.FromFile(图片路径);至于别的地方嘛,正在研究中 ....

解决方案 »

  1.   

    PictureBox.Image=Image.FromFile (@"http://ad4.sina.com.cn/button/eachnetlogo.GIF");
      

  2.   

    PictureBox.Image.FromFile (@"http://ad4.sina.com.cn/button/eachnetlogo.GIF");
      

  3.   

    网络的话使用流如:system.net.webclient ct=new webclient();
    stream strm=client.opentread(@"http://ad4.sina.com.cn/button/eachnetlogo.GIF");PictureBox.Image=Image.FromStream(strm);
      

  4.   

    yarshray(saga jion) 是对的,不过,有的地方改一下:System.Net.WebClient ct=new WebClient();
    Stream strm=ct.OpenRead(@"http://ad4.sina.com.cn/button/eachnetlogo.GIF");pictureBox1.Image=Image.FromStream(strm);