0

Web ページから情報を取得し、それを MainWindow に表示する必要があります。WebPage が読み込まれると、プロパティがこれらの情報を提供する別のライブラリに記述されたルーチンを呼び出しています。

私はstackoverflowをよく見て、さまざまな解決策を見つけましたが、どれもうまくいきませんでした。私のルーチンは次のとおりです。

protected System.Windows.Forms.WebBrowser wb;
        public void ObtainProfileInformation()
        {
            url = CUSTOMER_PROFILE_URL;
            HttpWebRequest req = (HttpWebRequest)WebRequest.Create(new Uri(url));
            try
            {
                HttpWebResponse res = (HttpWebResponse)req.GetResponse();
                var th = new System.Threading.Thread(() =>
                {
                    wb = new System.Windows.Forms.WebBrowser() { Visible = false, ScriptErrorsSuppressed = true };
                    wb.DocumentCompleted += (sender, e) =>
                    {
                        string target_url = wb.Url.AbsoluteUri;
                        if ((target_url.Contains("login") == false))
                        {
                            var html_text = wb.DocumentText;
                            HtmlAgilityPack.HtmlDocument html_document = new HtmlAgilityPack.HtmlDocument();
                            html_document.LoadHtml(html_text);
                            foreach (var MatchingDiv in html_document.DocumentNode.Descendants("span"))
                            {
                                if (MatchingDiv.Id.Contains("lblFullName"))
                                {
                                    CustomerName = MatchingDiv.InnerText;
                                }
                                if (MatchingDiv.Id.Contains("lblCompany"))
                                {
                                    CompanyName = MatchingDiv.InnerText;
                                }
                                if (MatchingDiv.Id.Contains("lblTitle"))
                                {
                                    CustomerTitle = MatchingDiv.InnerText;
                                }
                                if (MatchingDiv.Id.Contains("lblEmail"))
                                {
                                    CustomerEmail = MatchingDiv.InnerText.Split(new char[] { ':' })[1].TrimStart();
                                }
                                if (MatchingDiv.Id.Contains("lblUsername"))
                                {
                                    CustomerUserName = MatchingDiv.InnerText.Split(new char[] { ':' })[1].TrimStart();
                                }
                            }
                        }
                        System.Windows.Forms.Application.ExitThread();
                    };
                    wb.Navigate(url);
                    System.Windows.Forms.Application.Run();
                });
                th.SetApartmentState(System.Threading.ApartmentState.STA);
                th.Start();
            }
            catch (WebException)
            {
                wb.Dispose();
            }
            catch (Exception ex)
            {
                wb.Dispose();
                throw new Exception("Something strange", ex);
            }
        }

DocumentCompleted イベントが発生し、CustomerName などのプロパティが満たされていますが、ウィンドウのロード イベントが完了した後です。そのため、ウィンドウでそれらを変更できません。

4

0 に答える 0