Partager via


SimpleShape.BackgroundImageChanged, événement

Se produit lorsque la propriété d'BackgroundImage d'une forme est modifiée.

Espace de noms :  Microsoft.VisualBasic.PowerPacks
Assembly :  Microsoft.VisualBasic.PowerPacks.Vs (dans Microsoft.VisualBasic.PowerPacks.Vs.dll)

Syntaxe

'Déclaration
<BrowsableAttribute(True)> _
Public Event BackgroundImageChanged As EventHandler
[BrowsableAttribute(true)]
public event EventHandler BackgroundImageChanged
[BrowsableAttribute(true)]
public:
 event EventHandler^ BackgroundImageChanged {
    void add (EventHandler^ value);
    void remove (EventHandler^ value);
}
[<BrowsableAttribute(true)>]
member BackgroundImageChanged : IEvent<EventHandler,
    EventArgs>
JScript ne prend pas en charge les événements.

Notes

Cet événement est déclenché si la propriété BackgroundImage est modifiée soit par une intervention de l'utilisateur, soit par une modification apportée par programme.

Pour plus d'informations sur la gestion d'événements, consultez Consommation d'événements.

Exemples

L'exemple suivant montre comment répondre à l'événement BackgroundImageChanged dans un gestionnaire d'événements.Cet exemple requiert que vous avez un contrôle d'RectangleShape nommé RectangleShape1 et un contrôle Label nommé Label1 sur un formulaire.

Private Sub RectangleShape1_BackgroundImageChanged(
  ) Handles RectangleShape1.BackgroundImageChanged

    ' Display a message in the Label.
    Label1.Text = "The picture has changed."
End Sub
private void rectangleShape1_BackgroundImageChanged(object sender, System.EventArgs e)
{
    // Display a message in the Label.
    label1.Text = "The picture has changed.";
}

Sécurité .NET Framework

Voir aussi

Référence

SimpleShape Classe

Microsoft.VisualBasic.PowerPacks, espace de noms

Autres ressources

Introduction aux contrôles Line et Shape (Visual Studio)

Comment : dessiner des lignes avec le contrôle LineShape (Visual Studio)

Comment : dessiner des formes avec les contrôles OvalShape et RectangleShape (Visual Studio)