TemplateModeChangedEventArgs Class
Provides data for a ViewEvent event that is raised when the template mode changes for a control on the design surface.
Assembly: System.Design (in System.Design.dll)
| Name | Description | |
|---|---|---|
![]() | TemplateModeChangedEventArgs(TemplateGroup^) | Initializes a new instance of the TemplateModeChangedEventArgs class with the specified template group. |
| Name | Description | |
|---|---|---|
![]() | NewTemplateGroup | Gets the template group that was created when you entered template editing mode. |
| Name | Description | |
|---|---|---|
![]() | 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 the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
The ViewEvent event is raised by a designer host, such as Visual Studio 2005, for certain actions on a control on the design surface. For example, an event is raised when you enter or exit template editing mode for a control.
The ControlDesigner class supplies a default delegate to handle the ViewEvent event. When you exit or enter template editing mode, the designer host initializes a ViewEventArgs object for a TemplateModeChanged event type, and then sets the EventArgs property with a TemplateModeChangedEventArgs object.
When the ViewEventArgs object indicates that the template mode has changed, the default delegate in the ControlDesigner class updates the value for the InTemplateMode property.
Custom designers that are derived from the TemplatedControlDesigner class can override the OnTemplateModeChanged method to perform additional processing when the template editing mode changes for a control on the design surface.
For more information about events and delegates, see NIB: Events and Delegates.
Available since 2.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


