using System.Collections.Generic; namespace AeroWizard { /// /// A collection of controls. /// public class WizardPageCollection : EventedList { /// /// Initializes a new instance of the class. /// /// The that this collection belongs to. internal WizardPageCollection(WizardPageContainer owner) { Owner = owner; } /// /// Gets the to which this collection belongs. /// /// The . public WizardPageContainer Owner { get; } } }