TemplateModeChangedEventArgs Class

Definition

Provides data for a ViewEvent event that is raised when the template mode changes for a control on the design surface.

public ref class TemplateModeChangedEventArgs : EventArgs
public class TemplateModeChangedEventArgs : EventArgs
type TemplateModeChangedEventArgs = class
    inherit EventArgs
Public Class TemplateModeChangedEventArgs
Inherits EventArgs
Inheritance
TemplateModeChangedEventArgs

Remarks

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 Handling and Raising Events.

Constructors

TemplateModeChangedEventArgs(TemplateGroup)

Initializes a new instance of the TemplateModeChangedEventArgs class with the specified template group.

Properties

NewTemplateGroup

Gets the template group that was created when you entered template editing mode.

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
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)

Applies to

See also