ViewEventHandler Delegate

Definition

Represents the method that will handle the ViewEvent event that is raised by visual design tools, such as Visual Studio 2005, implementing the IControlDesignerView interface. This class cannot be inherited.

public delegate void ViewEventHandler(System::Object ^ sender, ViewEventArgs ^ e);
public delegate void ViewEventHandler(object sender, ViewEventArgs e);
type ViewEventHandler = delegate of obj * ViewEventArgs -> unit
Public Delegate Sub ViewEventHandler(sender As Object, e As ViewEventArgs)

Parameters

sender
Object

The source of the event.

e
ViewEventArgs

A ViewEventArgs object that contains the event data.

Remarks

When you create a ViewEventHandler delegate, you identify the method that will handle the event. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, unless you remove the delegate. For more information about event-handler delegates, see Handling and Raising Events.

The ViewEvent event is raised by the designer host for certain actions on a control on the design surface. The ViewEvent event is handled by a ViewEventHandler delegate method, which takes a ViewEventArgs object as a parameter.

Typically, control designer classes do not directly implement or assign a ViewEventHandler delegate. The ControlDesigner base class supplies a default delegate for the ViewEvent event. Custom control designers override the OnClick, OnPaint, and OnTemplateModeChanged methods to process those events for the control on the design surface. The Initialize method sets the default event delegate for the ViewEvent delegate.

Extension Methods

GetMethodInfo(Delegate)

Gets an object that represents the method represented by the specified delegate.

Applies to

See also