Click here to Skip to main content
15,886,258 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.
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Pajocomo.Drawing.Design</name>
    </assembly>
    <members>
        <member name="T:Pajocomo.Drawing.Design.FlagsEditor">
            <summary>
            Implements a custom type editor for selecting an enumeration from in a list.
            <seealso cref="U:http://www.codeproject.com/cs/miscctrl/flagseditor.asp">A flag editor</seealso>
            </summary>
        </member>
        <member name="M:Pajocomo.Drawing.Design.FlagsEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
            <summary>
            Overrides the method used to provide basic behaviour for selecting editor.
            Shows our custom control for editing the value.
            </summary>
            <param name="context">The context of the editing control</param>
            <param name="provider">A valid service provider</param>
            <param name="value">The current value of the object to edit</param>
            <returns>The new value of the object</returns>
        </member>
        <member name="M:Pajocomo.Drawing.Design.FlagsEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
            <summary>
            Shows a dropdown icon in the property editor
            </summary>
            <param name="context">The context of the editing control</param>
            <returns><see cref="F:System.Drawing.Design.UITypeEditorEditStyle.DropDown"/></returns>
        </member>
        <member name="M:Pajocomo.Drawing.Design.FlagsEditor.FlagsListBox_MouseDown(System.Object,System.Windows.Forms.MouseEventArgs)">
            <summary>
            When got the focus, handle the lost focus event.
            </summary>
            <param name="sender">The sender.</param>
            <param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> instance containing the event data.</param>
        </member>
        <member name="M:Pajocomo.Drawing.Design.FlagsEditor.FlagsListBox_MouseMoved(System.Object,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Occurs when the mouse is moved over the checkedlistbox. 
            Sets the tooltip of the item under the pointer
            </summary>
            <param name="sender">The sender.</param>
            <param name="e">The <see cref="T:System.Windows.Forms.MouseEventArgs"/> instance containing the event data.</param>
        </member>
        <member name="M:Pajocomo.Drawing.Design.FlagsEditor.FlagsListBox_LostFocus(System.Object,System.EventArgs)">
            <summary>
            Close the dropdowncontrol when the user has selected a value
            </summary>
            <param name="sender">The sender.</param>
            <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
        </member>
        <member name="T:Pajocomo.Drawing.Design.FlagsEditor.FlagItem">
            <summary>
            Internal class used for storing custom data in listviewitems
            </summary>
        </member>
        <member name="M:Pajocomo.Drawing.Design.FlagsEditor.FlagItem.#ctor(System.String,System.UInt32,System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Pajocomo.Drawing.Design.FlagsEditor.FlagItem"/> class.
            </summary>
            <param name="str">The string to display in the <c>ToString</c> method. 
            It will contains the name of the flag</param>
            <param name="value">The integer value of the flag</param>
            <param name="tooltip">The tooltip to display in the <see cref="T:System.Windows.Forms.CheckedListBox"/></param>
        </member>
        <member name="M:Pajocomo.Drawing.Design.FlagsEditor.FlagItem.ToString">
            <summary>
            Gets the name of this item
            </summary>
            <returns>The name passed in the constructor</returns>
        </member>
        <member name="P:Pajocomo.Drawing.Design.FlagsEditor.FlagItem.Value">
            <summary>
            Gets the int value for this item
            </summary>
        </member>
        <member name="P:Pajocomo.Drawing.Design.FlagsEditor.FlagItem.Tooltip">
            <summary>
            Gets the tooltip for this item
            </summary>
        </member>
    </members>
</doc>

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