如何在winform程序中显示网页

  1. Create a new Visual C# Windows Application project named DOM.

    The form name defaults to Form1.

  2. In Solution Explorer, right-click the References folder and select Add Reference.

    The Add Reference dialog box opens.

  3. Click on the .NET tab and double-click the component named Microsoft.mshtml.
  4. Click OK.

    References to the methods, events, and properties of the Microsoft DOM are added to the project.

  5. Open the Toolbox, right-click any tool, and choose Customize Toolbox.

    The Customize Toolbox dialog box opens.

  6. Click on the COM Components tab and check Microsoft Web Browser.

    The Web browser control labeled Explorer is added to the Toolbox components.

  7. Select the Explorer component and click the open form.

    A Web browser component named axWebBrowser1 is added to the form.

  8. Add a TextBox component above the browser component and a ListBox component below it, accepting the default names of textBox1 and listBox1.
  9. Add a Button component to the right of listBox1. Change the Text property to "Submit," and accept the default name of button1.

    The resulting form should look similar to the following screen shot:

  10. Double-click on button1.

    The button1_Click method is added to the project.

  11. Replace the body of the button1_Click method with the following bold code:
    private void button1_Click(object sender, System.EventArgs e)
        {
           object Zero = 0;
           object EmptyString = "";
           axWebBrowser1.Navigate(textBox1.Text,
           ref Zero, ref EmptyString, ref EmptyString, ref EmptyString);
        }
  12. Return to the form designer, select the browser component, and click the Events icon in the Properties window.

    A list of Web browser events appears.

  13. Double-click the Document Complete event.

    The axWebBrowser1_DocumentComplete event handler is added to the project.

  14. Add the following bold line of code to the beginning of the file Form1.cs:
    using System.Data;
        using mshtml;
  15. Replace the body of the axWebBrowser1_DocumentComplete event handler with the following code:
    private void axWebBrowser1_DocumentComplete(
        object sender,
        AxSHDocVw.DWebBrowserEvents2_DocumentCompleteEvent e)
        {
           IHTMLDocument2 HTMLDocument = 
              (IHTMLDocument2) axWebBrowser1.Document;
           IHTMLElementCollection links = HTMLDocument.links;
           listBox1.Items.Clear();
           foreach (HTMLAnchorElementClass el in links)
           {
              listBox1.Items.Add(el.outerHTML);
           }
        }
  16. Press F5 to build and run the project.

    The Form1 application appears.

  17. Type a URL—such as www.msn.com—into the text box and click Submit.

    The Web page is displayed in the browser, and a list of its anchors appears in the list box, as shown in the following screen shot.

posted @ 2006-08-31 17:47  小y  阅读(3000)  评论(1编辑  收藏  举报