ToolStripDropDown.BackgroundImageLayoutChanged Evento

Definición

Se produce cuando cambia el valor de la propiedad BackgroundImage.

public:
 event EventHandler ^ BackgroundImageLayoutChanged;
[System.ComponentModel.Browsable(false)]
public event EventHandler BackgroundImageLayoutChanged;
[System.ComponentModel.Browsable(false)]
public event EventHandler? BackgroundImageLayoutChanged;
[<System.ComponentModel.Browsable(false)>]
member this.BackgroundImageLayoutChanged : EventHandler 
Public Custom Event BackgroundImageLayoutChanged As EventHandler 

Tipo de evento

Atributos

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.Show por Console.WriteLine 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 tipo ToolStripDropDown denominada ToolStripDropDown1. A continuación, asegúrese de que el controlador de eventos está asociado al BackgroundImageLayoutChanged evento.

private void ToolStripDropDown1_BackgroundImageLayoutChanged(Object sender, EventArgs e) {

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

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

End Sub

Comentarios

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

Se aplica a