Web サイトから画像要素を取得して、PictureBox 内に表示しようとしています。コードはエラーを返しませんが、何も表示されません。
私は WebBrowser クラスを使用しており、Web ページの読み込みが完了すると呼び出されるイベントを使用して要素を表示しようとしています
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
}
画像を取得しようとしている Web ページの例を次に示します: http://halo.bungie.net/Stats/Halo3/Default.aspx?player=SmitherdxA27 ^この例では背景がオレンジ色の鳥です。