This interface provides the framework for building a custom designer. This interface stores the verbs available to the designer, as well as basic services for the designer.
IDesigner
[Visual Basic] Public Interface IDesigner [C#] public interface IDesigner [C++] public __gc __interface IDesigner
[JScript] In JScript, you can use the interfaces in the NGWS frameworks, but you cannot define your own.
Class | Description |
---|---|
ComponentDesigner | The default designer for all components. Almost everything that extends from Component will typically have one of these designers as their base designer. Designers do not have to inherit from this class, but it does provide some convenient features. |
A designer is an object that can modify a component's design-time behavior. All visual components should have a designer, as the designer is responsible for updating a component's user interface at design-time. Designers do not directly provide their own UI, but they may draw adornments on their component's UI.
Namespace: System.ComponentModel.Design
Assembly: System.dll