using System; using System.Collections.Generic; using System.Collections.ObjectModel; namespace Microsoft.Windows.Controls.PropertyGrid { public class PropertyCollection : ObservableCollection { public PropertyCollection() { } public PropertyCollection(List list) : base(list) { } public PropertyCollection(IEnumerable collection) : base(collection) { } } }