DesignSurfaceManager Class
Manages a collection of DesignSurface objects.
Assembly: System.Design (in System.Design.dll)
The DesignSurfaceManager type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | DesignSurfaceManager() | Initializes a new instance of the DesignSurfaceManager class. |
![]() | DesignSurfaceManager(IServiceProvider) | Initializes a new instance of the DesignSurfaceManager class. |
| Name | Description | |
|---|---|---|
![]() | ActiveDesignSurface | Gets or sets the active designer. |
![]() | DesignSurfaces | Gets a collection of design surfaces. |
![]() | ServiceContainer | Gets the design surface manager's ServiceContainer. |
| Name | Description | |
|---|---|---|
![]() | CreateDesignSurface() | Creates an instance of a design surface. |
![]() | CreateDesignSurface(IServiceProvider) | Creates an instance of a design surface. |
![]() | CreateDesignSurfaceCore | Implementation that creates the design surface. |
![]() | Dispose() | Releases the resources used by the DesignSurfaceManager. |
![]() | Dispose(Boolean) | Releases the unmanaged resources used by the DesignSurfaceManager and optionally releases the managed resources. |
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetService | Gets a service in the design surface manager’s service container. |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
| Name | Description | |
|---|---|---|
![]() | ActiveDesignSurfaceChanged | Occurs when the currently active designer changes. |
![]() | DesignSurfaceCreated | Occurs when a designer is created. |
![]() | DesignSurfaceDisposed | Occurs when a designer is disposed. |
![]() | SelectionChanged | Occurs when the global selection changes. |
The DesignSurfaceManager class is designed to be a container of DesignSurface objects. It provides common services that handle event routing between designers, property windows, and other global objects. Using DesignSurfaceManager is optional, but it is recommended if you intend to have several designer windows.
The DesignSurfaceManager class provides several design-time services automatically. You can override each of these services by replacing them in the protected ServiceContainer property. To replace a service, override the constructor, call base, and make any changes through the protected ServiceContainer property. All services added to the service container that implement the IDisposable interface are disposed when the design surface manager is disposed. The DesignSurfaceManager class provides the IDesignerEventService interface as the default service. IDesignerEventService provides a global eventing mechanism for designer events. With this mechanism, an application is informed when a designer becomes active. The service provides a collection of designers and a single place where global objects, such as the Properties window, can monitor selection change events.
- NamedPermissionSet
for full access to system resources. Demand values: LinkDemand, InheritanceDemand. Associated state: FullTrust
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
