C # WinForm uses the WebBrowser control, does not eject the new page, only opens in the current window __web

Source: Internet
Author: User

1. Remember to import class library: Using System.ComponentModel;
2. Modify the properties of the WebBrowser:
Allowwebbrowserdrop set to False
Webbrowsershortcutsenabled set to False
Iswebbrowsercontextmenuenabled set to False

3. The specific setup code is as follows:


       private void Webbrowser1_newwindow (object sender, CancelEventArgs e)
       {
                e.cancel = true;
       }        
 
        private void Webbrowser1_documentcompleted (object sender, WebBrowserDocumentCompletedEventArgs e)
        {            
            foreach (HtmlElement links in This.webBrowser1.Document.Links)
            {
                links. SetAttribute ("Target", "_self");
            }            
            foreach (HtmlElement form in this.webBrowser1.Document.Forms)
            {
                form. SetAttribute ("Target", "_self");
            }
        


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.