Click here to Skip to main content
15,896,111 members
Articles / Programming Languages / C#

PropertyGrid

Rate me:
Please Sign up or sign in to vote.
3.22/5 (3 votes)
3 Nov 20069 min read 52.2K   1.3K   30  
A control which provides a convenient way to display data in a property grid.
using System;

namespace Puma.Controls.PropertyGrid.PGITemplates
{
    public class XmlGridChildItemsFragment : Collections.Shred, IPropertyGridChildItemsFragment
    {
        internal protected XmlGridChildItemsFragment(XmlGridChildItems Container, Puma.Xml.XmlXsdNodeCollectionFragment XmlXsdNodeCollectionFragment)
            : base(XmlXsdNodeCollectionFragment.Name, Container)
        {
            _xmlXsdNodeCollectionFragment = XmlXsdNodeCollectionFragment;

            foreach (Puma.Xml.XmlXsdNode child in XmlXsdNodeCollectionFragment)
            {
                base.Insert(-1, OnXmlGridItemCreated(((XmlGridChildItems)Container).Parent, child));
            }
        }

        private readonly Puma.Xml.XmlXsdNodeCollectionFragment _xmlXsdNodeCollectionFragment;


        protected virtual XmlGridItem OnXmlGridItemCreated(XmlGridItem Parent, Puma.Xml.XmlXsdNode XmlXsdNode)
        {
            return new XmlGridItem(Parent, XmlXsdNode);
        }

        #region IPropertyGridChildItemsFragment Members

        public IPropertyGridItem this[int Index]
        {
            get { return (IPropertyGridItem) base.GetItem(Index); }
        }

        public IPropertyGridItem InsertItem(int Index)
        {
            Puma.Xml.XmlXsdNode node = _xmlXsdNodeCollectionFragment.InsertXmlXsdNode(Index);

            XmlGridItem item = OnXmlGridItemCreated(((XmlGridChildItems)Container).Parent, node);

            base.Insert(Index, item);

            return item;
        }

        public IPropertyGridItem RemoveItem(int Index)
        {
            IPropertyGridItem item = this[Index];

            _xmlXsdNodeCollectionFragment.RemoveXmlXsdNode(Index);

            base.Remove(Index);

            return item;
        }

        public string DisplayedName
        {
            get 
            {
                return _xmlXsdNodeCollectionFragment.TemplateXsdNode.Caption != null ? _xmlXsdNodeCollectionFragment.TemplateXsdNode.Caption : this.Name;
            }
        }

        #endregion

        #region IShred Members

        public override bool IsCanInsert
        {
            get 
            {
                return _xmlXsdNodeCollectionFragment.IsCanInsert; 
            }
        }

        public override bool IsCanRemove
        {
            get 
            {
                return _xmlXsdNodeCollectionFragment.IsCanRemove; 
            }
        }

        #endregion
    }
}

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 has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Russian Federation Russian Federation
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions