Compartir a través de


FormRegionInitializingEventHandler Delegado

Definición

Representa el método que va a controlar el evento FormRegionInitializing del área de formulario.

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

Parámetros

sender
Object

Origen del evento.

e
FormRegionInitializingEventArgs

Datos del evento.

Comentarios

Cuando se crea un delegado FormRegionInitializingEventHandler, se identifica el método que controlará el evento. Para asociar el evento al controlador, se debe agregar una instancia del delegado al evento. Siempre que se produce el evento, se llama a su controlador, a menos que se quite el delegado.

Se aplica a