Click here to Skip to main content
15,892,298 members
Articles / Programming Languages / C#

Unleash PropertyGrid with Dynamic Properties and Globalization

Rate me:
Please Sign up or sign in to vote.
4.97/5 (24 votes)
29 Jan 2004CPOL9 min read 126.5K   4.8K   88  
The article presents a way to enhance the use of the PropertyGid control with dynamic properties and globalization
<?xml version="1.0"?>
<doc>
    <assembly>
        <name>CustomControls</name>
    </assembly>
    <members>
        <member name="M:CustomControls.CollectionEditor.CustomCollectionEditorForm.InitializeComponent">
            <summary>
            Required method for Designer support - do not modify
            the contents of this method with the code editor.
            </summary>
        </member>
        <member name="M:CustomControls.CollectionEditor.CustomCollectionEditorForm.GetItemType(System.Collections.IList)">
            <summary>
            Gets the data type of each item in the collection.
            </summary>
            <param name="coll"> The collection for which to get the item's type</param>
            <returns>The data type of the collection items.</returns>
        </member>
        <member name="M:CustomControls.CollectionEditor.CustomCollectionEditorForm.CreateNewItemTypes(System.Collections.IList)">
            <summary>
            Gets the data types that this collection editor can contain
            </summary>
            <param name="coll">The collection for which to return the available types</param>
            <returns>An array of data types that this collection can contain.</returns>
        </member>
        <member name="M:CustomControls.CollectionEditor.CustomCollectionEditorForm.CreateInstance(System.Type)">
            <summary>
            Creates a new instance of the specified collection item type.
            </summary>
            <param name="itemType">The type of item to create. </param>
            <returns>A new instance of the specified object.</returns>
        </member>
        <member name="M:CustomControls.CollectionEditor.CustomCollectionEditorForm.DestroyInstance(System.Object)">
            <summary>
            Destroys the specified instance of the object.
            </summary>
            <param name="instance">The object to destroy. </param>
        </member>
        <member name="M:CustomControls.CollectionEditor.CustomCollectionEditorForm.CreateTItem(System.Object)">
            <summary>
            Creates a new TItem objectfor a collection item.
            </summary>
            <param name="reffObject">The collection item for wich to create an TItem object.</param>
            <returns>A TItem object referencing the collection item received as parameter.</returns>
        </member>
        <member name="M:CustomControls.CollectionEditor.CustomCollectionEditorForm.SetProperties(CustomControls.CollectionEditor.TItem,System.Object)">
            <summary>
            When implemented by a class, customize a TItem object in respect to it's corresponding collection item.
            </summary>
            <param name="titem">The TItem object to be customized in respect to it's corresponding collection item.</param>
            <param name="reffObject">The collection item for which it customizes the TItem object.</param>
        </member>
        <member name="M:CustomControls.CollectionEditor.CustomCollectionEditorForm.SetDisplayName(CustomControls.CollectionEditor.TItem)">
            <summary>
            Sets the Name  for a TItem object.
            </summary>
            <param name="ti">The TItem object for which to set the Name.</param>
        </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
Web Developer
Romania Romania
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions