INestedContainer Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Provides functionality for nested containers, which logically contain zero or more other components and are owned by a parent component.
public interface class INestedContainer : IDisposable, System::ComponentModel::IContainer
public interface class INestedContainer : System::ComponentModel::IContainer
public interface INestedContainer : IDisposable, System.ComponentModel.IContainer
public interface INestedContainer : System.ComponentModel.IContainer
type INestedContainer = interface
interface IContainer
interface IDisposable
Public Interface INestedContainer
Implements IContainer, IDisposable
Public Interface INestedContainer
Implements IContainer
- Derived
- Implements
Remarks
The INestedContainer interface adds the concept of an owning component to the IContainer interface. A nested container is an object that logically, but not necessarily visually, contains zero or more child components and is owned by some parent component. For visual containment, the owning component is often another container.
Nested containers allow sections of a control to be designable, without requiring an explicit serialized member variable or a custom serializer for each subcontrol. Instead, the form designer maintains one primary container of components. Each component's site may have a nested container that provides a place to put extra components. When a component is sited in a nested container, the name it receives is a combination of its given name and its owning component's name. Additionally, components added to a nested container have full access to the services of the parent container, and the nested container provides the same behavior of the parent with respect to adding new components. The nested container will create the designer for each component it contains, thereby enabling design-time support. Because standard code serializers do not look at nested containers, these components are only serialized if a path to them can be obtained by walking the components in the primary container.
Nested containers can be found by querying a component's site for services of type INestedContainer.
Properties
Components |
Gets all the components in the IContainer. (Inherited from IContainer) |
Owner |
Gets the owning component for the nested container. |
Methods
Add(IComponent, String) |
Adds the specified IComponent to the IContainer at the end of the list, and assigns a name to the component. (Inherited from IContainer) |
Add(IComponent) |
Adds the specified IComponent to the IContainer at the end of the list. (Inherited from IContainer) |
Dispose() |
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. (Inherited from IDisposable) |
Remove(IComponent) |
Removes a component from the IContainer. (Inherited from IContainer) |