ControlDesigner Class
Assembly: System.Design (in system.design.dll)
The ControlDesigner class provides a base control designer class that can be inherited from and extended to provide design-time support for a Web server control in a design host, such as Visual Studio 2005.
The object model for working with design-time rendering is improved over earlier versions, with the following new base classes to provide access to the simplified object model:
-
ControlDesigner, which is not new, but has been greatly improved.
Automatic Formatting
You can create a variety of automatic and pre-defined formats that can simplify the process of page developers who are applying complex style changes to custom Web server controls. For example, the TableDesigner control, which derives from the ControlDesigner class, provides many automatic formats from which to choose. To implement and provide automatic formatting in your custom controls, use the following features:
-
The AutoFormats property.
-
The OnAutoFormatApplied method.
-
The DesignerAutoFormat class.
-
The DesignerAutoFormatStyle class.
Action Lists (Smart Tags)
Action lists are menus of important or widely used tasks that a page developer who uses a control can perform in a design-time user interface (UI), such as Visual Studio 2005. For example, the design-time view of your control could provide a menu of available tasks. This includes a task to format the control automatically. To learn about action lists, start with the following features:
-
The ActionLists property.
-
The DesignerActionList class.
-
The GetSortedActionItems method.
-
The DesignerActionListCollection class.
-
The DesignerActionMethodItem class.
-
The DesignerActionPropertyItem class.
Control Designer Regions
Regions are editable areas in the design-time view of a Web server control. This feature offers WYSIWYG-like editing of the template content, inner controls, and properties at design time. You can have the control designer create controls in regions or you can use the Toolbox to drag and drop controls into regions. Regions are managed with the following features:
-
The OnClick method.
-
The DesignerRegion class.
-
The EditableDesignerRegion class.
-
The GetEditableDesignerRegionContent method.
-
The SetEditableDesignerRegionContent method.
Templates
The model for creating a UI for design-time editing of templated controls, such as the GridView control, has been greatly improved from earlier versions. You can create complex custom controls that include templates for various parts of the control, and your custom control designer can help page developers who are modifying templates with the following features:
-
The TemplateGroups property.
-
The InTemplateMode property.
-
The TemplateGroup class.
Design-Time Rendering
The ControlDesigner class has the following methods to support design-time rendering of the Web server control. Most of these methods are the same as in earlier versions:
-
The GetDesignTimeHtml method.
-
The GetEmptyDesignTimeHtml method.
-
The GetErrorDesignTimeHtml method.
-
The UpdateDesignTimeHtml method.
-
The CreatePlaceHolderDesignTimeHtml method.
The following code example demonstrates how to create a simple designer class that derives from the ControlDesigner class. This control designer supports a custom TextControl class and provides a command to change the text size of a control at design time. The control designer is associated with the control by specifying the control designer in a DesignerAttribute object declaration on the TextControl class. The key to persisting property changes from the control designer to the HTML markup is found in the ToggleTextSize method of the custom ActionList class.
To try the example, add a reference to the System.Design.dll assembly and compile the code.
- SecurityPermission for operating with unmanaged code. Associated enumeration: UnmanagedCode
System.ComponentModel.Design.ComponentDesigner
System.Web.UI.Design.HtmlControlDesigner
System.Web.UI.Design.ControlDesigner
Derived Classes
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Reference
ControlDesigner MembersSystem.Web.UI.Design Namespace
TemplateGroup
DesignerAutoFormat
DesignerActionList
DesignerRegion
ContainerControlDesigner Class
CompositeControlDesigner
Other Resources
ASP.NET Control Designers OverviewDesign-Time Architecture
Design-Time Support for Web Forms
Sample Control Designer with Action Lists and Services