//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ /* */ namespace System.ComponentModel.Design { using System; using System.Collections; /// /// ITreeDesigner is a variation of IDesigner that provides support for /// generically indicating parent / child relationships within a designer. /// public interface ITreeDesigner : IDesigner { /// /// Retrieves the children of this designer. This will return an empty collection /// if this designer has no children. /// ICollection Children { get; } /// /// Retrieves the parent designer for this designer. This may return null if /// there is no parent. /// IDesigner Parent { get; } } }