using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace SharpDevelop.XamlDesigner.PropertyGrid { /// /// A SortedObservableCollection{PropertyNode, string} that sorts by the PropertyNode's Name. /// public class PropertyNodeCollection : SortedObservableCollection { /// /// Creates a new PropertyNodeCollection instance. /// public PropertyNodeCollection() : base(n => n.MemberId.Name) { } } }