Click here to Skip to main content
15,881,715 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
{
    internal class PropertyGridChildItemsFragment : Collections.Shred, IPropertyGridChildItemsFragment
    {
        internal PropertyGridChildItemsFragment(string Name, Collections.ShredCollector Container)
            : base(Name, Container)
        { }

        #region IPropertyGridChildItemsFragment Members

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

        public virtual IPropertyGridItem InsertItem(int Index)
        {
            PropertyGridItem item = new PropertyGridItem(base.Name, "", null);

            base.Insert(Index, item);

            return item;
        }

        public virtual IPropertyGridItem RemoveItem(int Index)
        { 
            IPropertyGridItem item = (IPropertyGridItem)base.GetItem(Index);

            base.Remove(Index);

            return item;
        }

        public virtual string DisplayedName
        {
            get 
            {
                return this.Name;
            }
        }

        #endregion
}

    internal class PropertyGridChildItems : Collections.ShredCollector, IPropertyGridChildItems
    {
        internal PropertyGridChildItems(PropertyGridItem[] Childs)
        {
            foreach (PropertyGridItem child in Childs)
            {
                base.AddItem(child.Name, child);
            }
        }

        protected override Puma.Collections.IShred OnShredCreated(string Name, Puma.Collections.ShredCollector ShredCollector)
        {
            return new PropertyGridChildItemsFragment(Name, ShredCollector);
        }

        #region IPropertyGridChildItems Members

        public IPropertyGridChildItemsFragment this[string Name]
        {
            get { return (IPropertyGridChildItemsFragment)GetShred(Name); }
        }

        #endregion
    }

    public class PropertyGridItem : IPropertyGridItem
    {
        public PropertyGridItem(string Name, string Value, PropertyGridItem[] Childs)
        { 
            _name = Name;
            _value = Value;
            
            if (Childs != null)
            {
                _childs = new PropertyGridChildItems(Childs);
                
                foreach (PropertyGridItem child in _childs.GetAllContainedItems())
                {
                    child._parent = this;
                }
            }
        }

        private readonly string _name;
        private string _value;

        private PropertyGridItem _parent;
        private readonly IPropertyGridChildItems _childs;

        #region IPropertyGridItem Members

        public IPropertyGridItemType Type
        {
            get { return null; }
        }

        public string Name
        {
            get { return _name; }
        }

        public string DisplayedName
        {
            get { return _name; }
        }

        public string Value
        {
            get
            {
                return _value; 
            }
            set
            {
                _value = value;
            }
        }

        public string Documentation
        {
            get { return null; }
        }

        public bool IsReadOnly
        {
            get { return false; }
        }

        public IPropertyGridChildItems Childs
        {
            get { return _childs; }
        }

        public IPropertyGridItem Parent
        {
            get { return _parent; }
        }

        #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