StartupEventHandler Delegado

Definición

Representa el método que controlará el evento My.Application.Startup.

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)

Parámetros

sender
Object

Origen del evento.

e
StartupEventArgs

Objeto StartupEventArgs que contiene los datos del evento.

Ejemplos

WindowsFormsApplicationBase.Startup

Información general sobre el modelo de aplicaciones de Visual Basic

Comentarios

En Visual Basic, no es necesario trabajar con este delegado explícitamente. Para obtener más información, vea Startup.

Métodos de extensión

GetMethodInfo(Delegate)

Obtiene un objeto que representa el método representado por el delegado especificado.

Se aplica a