IDesignerLoaderHost 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 an interface that can extend a designer host to support loading from a serialized state.
public interface class IDesignerLoaderHost : IServiceProvider, System::ComponentModel::Design::IDesignerHost
public interface class IDesignerLoaderHost : System::ComponentModel::Design::IDesignerHost
public interface IDesignerLoaderHost : IServiceProvider, System.ComponentModel.Design.IDesignerHost
public interface IDesignerLoaderHost : System.ComponentModel.Design.IDesignerHost
type IDesignerLoaderHost = interface
interface IDesignerHost
interface IServiceContainer
interface IServiceProvider
Public Interface IDesignerLoaderHost
Implements IDesignerHost, IServiceProvider
Public Interface IDesignerLoaderHost
Implements IDesignerHost
- Derived
- Implements
Remarks
An IDesignerHost can implement this interface to enable support for loading by a DesignerLoader.
The designer loader informs the designer host that it needs to invoke a load or reload so that the designer host can perform additional tasks at these times.
This class is isolated from IDesignerHost to emphasize that the designer loader, not the designer host, must initiate all loading and reloading of the design document.
Properties
Container |
Gets the container for this designer host. (Inherited from IDesignerHost) |
InTransaction |
Gets a value indicating whether the designer host is currently in a transaction. (Inherited from IDesignerHost) |
Loading |
Gets a value indicating whether the designer host is currently loading the document. (Inherited from IDesignerHost) |
RootComponent |
Gets the instance of the base class used as the root component for the current design. (Inherited from IDesignerHost) |
RootComponentClassName |
Gets the fully qualified name of the class being designed. (Inherited from IDesignerHost) |
TransactionDescription |
Gets the description of the current transaction. (Inherited from IDesignerHost) |
Methods
Activate() |
Activates the designer that this host is hosting. (Inherited from IDesignerHost) |
AddService(Type, Object, Boolean) |
Adds the specified service to the service container, and optionally promotes the service to any parent service containers. (Inherited from IServiceContainer) |
AddService(Type, Object) |
Adds the specified service to the service container. (Inherited from IServiceContainer) |
AddService(Type, ServiceCreatorCallback, Boolean) |
Adds the specified service to the service container, and optionally promotes the service to parent service containers. (Inherited from IServiceContainer) |
AddService(Type, ServiceCreatorCallback) |
Adds the specified service to the service container. (Inherited from IServiceContainer) |
CreateComponent(Type, String) |
Creates a component of the specified type and name, and adds it to the design document. (Inherited from IDesignerHost) |
CreateComponent(Type) |
Creates a component of the specified type and adds it to the design document. (Inherited from IDesignerHost) |
CreateTransaction() |
Creates a DesignerTransaction that can encapsulate event sequences to improve performance and enable undo and redo support functionality. (Inherited from IDesignerHost) |
CreateTransaction(String) |
Creates a DesignerTransaction that can encapsulate event sequences to improve performance and enable undo and redo support functionality, using the specified transaction description. (Inherited from IDesignerHost) |
DestroyComponent(IComponent) |
Destroys the specified component and removes it from the designer container. (Inherited from IDesignerHost) |
EndLoad(String, Boolean, ICollection) |
Ends the designer loading operation. |
GetDesigner(IComponent) |
Gets the designer instance that contains the specified component. (Inherited from IDesignerHost) |
GetService(Type) |
Gets the service object of the specified type. (Inherited from IServiceProvider) |
GetType(String) |
Gets an instance of the specified, fully qualified type name. (Inherited from IDesignerHost) |
Reload() |
Reloads the design document. |
RemoveService(Type, Boolean) |
Removes the specified service type from the service container, and optionally promotes the service to parent service containers. (Inherited from IServiceContainer) |
RemoveService(Type) |
Removes the specified service type from the service container. (Inherited from IServiceContainer) |
Events
Activated |
Occurs when this designer is activated. (Inherited from IDesignerHost) |
Deactivated |
Occurs when this designer is deactivated. (Inherited from IDesignerHost) |
LoadComplete |
Occurs when this designer completes loading its document. (Inherited from IDesignerHost) |
TransactionClosed |
Adds an event handler for the TransactionClosed event. (Inherited from IDesignerHost) |
TransactionClosing |
Adds an event handler for the TransactionClosing event. (Inherited from IDesignerHost) |
TransactionOpened |
Adds an event handler for the TransactionOpened event. (Inherited from IDesignerHost) |
TransactionOpening |
Adds an event handler for the TransactionOpening event. (Inherited from IDesignerHost) |