.net普通下载
string uri = textBox1.Text;
string LocalFileName = "local.gif";
System.Net.WebClient client = new System.Net.WebClient();
client.DownloadFile(uri,LocalFileName);
this.pictureBox1.Image = Image.FromFile(LocalFileName);
微信扫一扫
.net普通下载
string uri = textBox1.Text;
string LocalFileName = "local.gif";
System.Net.WebClient client = new System.Net.WebClient();
client.DownloadFile(uri,LocalFileName);
this.pictureBox1.Image = Image.FromFile(LocalFileName);
相关推荐