单击按钮时,我想从网络加载图像。我努力了:
private void button1_Click(object sender, EventArgs e)
{
pictureBox1.Image = Image.ImageLocation = "http://i.imgur.com/7ikw7ye.png";
}
但我得到了错误:
“System.Drawing.Image”不包含“ImageLocation”的定义
如果有人可以帮助我解决此问题或找到在单击按钮时加载图像的正确方法,将不胜感激!