ToolStripDropDown.BackgroundImageLayoutChanged Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit quand la valeur de la propriété BackgroundImage change.
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
Type d'événement
- Attributs
Exemples
L’exemple de code suivant illustre l’utilisation de ce membre. Dans l’exemple, un gestionnaire d’événements signale l’occurrence de l’événement BackgroundImageLayoutChanged . Ce rapport vous aide à savoir quand l’événement se produit et peut vous aider à déboguer. Pour signaler plusieurs événements ou événements qui se produisent fréquemment, envisagez de MessageBox.ShowConsole.WriteLine remplacer par ou d’ajouter le message à un multiligne TextBox.
Pour exécuter l’exemple de code, collez-le dans un projet qui contient un instance de type ToolStripDropDown nommé ToolStripDropDown1
. Vérifiez ensuite que le gestionnaire d’événements est associé à l’événement BackgroundImageLayoutChanged .
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
Remarques
Pour plus d'informations sur la gestion des événements, voir gestion et déclenchement d’événements.