StartupEventHandler Delegado

Definición

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

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 aplicación de Visual Basic

Comentarios

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

Métodos de extensión

Nombre Description
GetMethodInfo(Delegate)

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

Se aplica a