StartupEventHandler Delegate

Definition

Represents the method that will handle the My.Application.Startup event.

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

Parameters

sender
Object

The source of the event.

e
StartupEventArgs

A StartupEventArgs object that contains the event data.

Examples

WindowsFormsApplicationBase.Startup

Overview of the Visual Basic Application Model

Remarks

In Visual Basic, you do not need to work with this delegate explicitly. For more information, see Startup.

Extension Methods

GetMethodInfo(Delegate)

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

Applies to