本地的图片,图片地址要注意,用这个方法,图片必须放在,bin\x64\Debug 目录下
this.panel2.BackgroundImage = Image.FromFile(Application.StartupPath+"\\image\\ChoosedBg.png");
线上的图片
System.Net.WebClient webClient = new System.Net.WebClient();
System.IO.Stream stream = webClient.OpenRead(@"http://这里写你线上的地址" + Photo);
this.pictureBox6.Image = Image.FromStream(stream);