无法等待使用WebBrowser控件加载网页

时间:2019-01-28 10:58:30

标签: c# .net winforms webbrowser-control

我正在编写带有本地站点网页截图的服务。 我正在使用WebBrowser控件将网页捕获为图像。 下面是我正在使用的代码:

namespace MakeScreenShotURL
{
    class Program
    {
        private static Config config = new Config(System.Reflection.Assembly.GetExecutingAssembly().Location);
        [STAThread]
        static void Main()
        {
            int width = 1700;
            int height = 1700;
            string username = "userdata";
            string password = "passworddata";
            int currentmonth = DateTime.Now.Month;
            int nextmonth = DateTime.Now.Month + 1;
            int year = DateTime.Now.Year;
            screen(width, height, year, nextmonth, currentmonth, username, password);
        }

        static void screen(int width, int height, int year, int nextmonth, int currentmonth, string username, string password)
        {
            string PlaceCode = config.GetAppSetting("place");
            string[] Places = PlaceCode.Split(';'); //contains a list of sites for example: Berlin; Munich; Dresden
            foreach (string pl in Places)  
            {
                using (WebBrowser browser = new WebBrowser())
                {
                    browser.Width = width;
                    browser.Height = height;
                    browser.ScrollBarsEnabled = true;
                    Uri uri = new Uri(" http://localsite.php?y=" + year + "&m=" + nextmonth + "&p=" + pl + " ");
                    string additionalHeaderInfo = "Authorization: Basic " + Convert.ToBase64String(Encoding.ASCII.GetBytes(username + ":" + password)) + System.Environment.NewLine;
                    browser.Navigate(uri, null, null, additionalHeaderInfo);
                    Wait(2);  //waiting for pages to load 2 seconds
                    using (Graphics graphics = browser.CreateGraphics())
                    using (Bitmap bitmap = new Bitmap(browser.Width, browser.Height, graphics))
                    {
                        Rectangle bounds = new Rectangle(0, 0, bitmap.Width, bitmap.Height);
                        browser.DrawToBitmap(bitmap, bounds);
                        bitmap.Save("C:/Users/user/image/screenshot" + pl + ".jpeg", ImageFormat.Jpeg); 
                    }
                    Application.Run();
                }
            }
            Application.Exit();
        }
        static void Wait(int number)
        {
            DateTime time = DateTime.Now;
            do
            {
                Application.DoEvents();
            }
            while (time.AddSeconds(number) > DateTime.Now);
        }
    }
}

程序从位置数组创建第一个元素(柏林)的屏幕快照,并将其保存到磁盘。 但是,当从数组中选择第二个元素时,程序将在执行之后挂起:

Application.Run();

也许程序期望一些东西,但是我听不懂。

有人可以帮我吗?

1 个答案:

答案 0 :(得分:0)

这个功能确实可以运行,这让我真的很感兴趣,因为它没有父窗口,也没有与WebBrowser交互的用户界面。

无论如何,Application.Run()进入主消息循环,因此它等待消息。该循环通常一直运行到被强制停止为止,例如通过发送WM_QUIT消息。

Application.DoEvents()做类似的事情,但不会阻塞。它只是在消息队列内部查找,执行其中的所有消息,然后返回。因此,您可以删除对Application.Run()的调用。

如果要创建严肃的应用程序,则至少需要开始使用事件。将方法附加到WebBrowser.DocumentCompleted,然后在此等待页面加载,然后运行对browser.DrawToBitmap的调用。

与DoEvents相比,您还需要提供一种更好的执行消息的方法,因为当前的解决方案基本上将在加载浏览器时占用单个CPU内核。