Click here to Skip to main content
15,885,546 members
Articles / Programming Languages / C#

WebBrowserControl for the .NET Framework 1.1

Rate me:
Please Sign up or sign in to vote.
3.06/5 (11 votes)
15 Apr 2010CPOL2 min read 98.6K   1.6K   21  
An implementation of a web browser control for the .NET Framework 1.1.
namespace Pajocomo.Windows.Forms
{
    /// <summary>
	/// Contains values used by the <see cref="E:WebBrowserControl.Navigating">WebBrowserControl.Navigating</see> event.
    /// </summary>
	/// <seealso href="http://msdn2.microsoft.com/library/Aa768359.aspx">BrowserBeforeNavConstants Enumerated Type</seealso>
    [System.Flags]
    public enum WebBrowserNavigatingFlags : int
    {
        /// <summary>
        /// No flag.
        /// </summary>
        None = 0x0,

        /// <summary>
        /// Windows Internet Explorer 7.
        /// Indicates to the host that this navigate event was the result of an external window and/or tab targeting this browser,
        /// which allows the host to create a new tab or flash an existing tab.
        /// </summary>
        ExternalFrameTarget = 0x1
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Paulo Morgado
Portugal Portugal

Comments and Discussions