我正在尝试从网站获取图片元素并将其显示在 PictureBox 中。代码不返回任何错误,但没有显示任何内容。
我正在使用 WebBrowser 类并尝试使用在网页完成加载后调用的事件来显示元素
void wb_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
{
pictureBox1.ImageLocation = wb.Document.GetElementById("ctl00_mainContent_identityBar_emblemImg").InnerText; // does nothing
label1.Text = "Last Played: " + wb.Document.GetElementById("ctl00_mainContent_lastPlayedLabel").InnerText; // works fine
}
这是我试图从中提取图像的网页示例:http ://halo.bungie.net/Stats/Halo3/Default.aspx?player=SmitherdxA27 ^这是该示例中橙色背景的鸟。