本文介绍了在控制台C#中使用Web浏览器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我具有以下形式的代码,我需要将其转换为控制台应用程序...我该怎么做?

i have the following code in forms and i need to convert it to a console application... How can i do this?

private void Form1_Load(object sender, EventArgs e)
        {
            WebBrowser wb = new WebBrowser();

            wb.DocumentCompleted += new WebBrowserDocumentCompletedEventHandler(DisplayText);


            wb.Url = new Uri("http://www.dut.ac.za");
            wb.Visible = false;
        }

        private void DisplayText(object sender, WebBrowserDocumentCompletedEventArgs e)
        {
            WebBrowser wb = (WebBrowser)sender;

            wb.Document.ExecCommand("SelectAll", false, null);

            wb.Document.ExecCommand("Copy", false, null);

            textResultsBox.Text = Clipboard.GetText();
        }

推荐答案



这篇关于在控制台C#中使用Web浏览器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-15 11:58