Control.BackgroundImageLayoutChanged Evento

Definición

Se produce cuando cambia la propiedad BackgroundImageLayout.

public:
 event EventHandler ^ BackgroundImageLayoutChanged;
public event EventHandler BackgroundImageLayoutChanged;
public event EventHandler? BackgroundImageLayoutChanged;
member this.BackgroundImageLayoutChanged : EventHandler 
Public Custom Event BackgroundImageLayoutChanged As EventHandler 

Tipo de evento

Ejemplos

En el ejemplo de código siguiente se muestra el uso de este miembro. En el ejemplo, un controlador de eventos informa sobre la aparición del BackgroundImageLayoutChanged evento. Este informe le ayuda a aprender cuándo se produce el evento y puede ayudarle a depurar. Para informar sobre varios eventos o eventos que se producen con frecuencia, considere la posibilidad de reemplazar MessageBox.ShowConsole.WriteLine por o anexar el mensaje a una línea TextBoxmúltiple.

Para ejecutar el código de ejemplo, péguelo en un proyecto que contenga una instancia de un tipo que herede de Control, como o ComboBoxButton . A continuación, asigne un nombre a la instancia Control1 y asegúrese de que el controlador de eventos está asociado al BackgroundImageLayoutChanged evento.

private void Control1_BackgroundImageLayoutChanged(Object sender, EventArgs e) {

   MessageBox.Show("You are in the Control.BackgroundImageLayoutChanged event.");
}
Private Sub Control1_BackgroundImageLayoutChanged(sender as Object, e as EventArgs) _ 
     Handles Control1.BackgroundImageLayoutChanged

   MessageBox.Show("You are in the Control.BackgroundImageLayoutChanged event.")

End Sub

Comentarios

Este evento se genera si la BackgroundImageLayout propiedad cambia mediante programación o por interacción del usuario.

Para obtener más información sobre el manejo de eventos, consulte controlar y provocar eventos.

Se aplica a

Consulte también