Partager via


SimpleShape.BackColorChanged, événement

Se produit lorsque la propriété d'BackColor de la 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 BackColorChanged As EventHandler
[BrowsableAttribute(true)]
public event EventHandler BackColorChanged
[BrowsableAttribute(true)]
public:
 event EventHandler^ BackColorChanged {
    void add (EventHandler^ value);
    void remove (EventHandler^ value);
}
[<BrowsableAttribute(true)>]
member BackColorChanged : IEvent<EventHandler,
    EventArgs>
JScript ne prend pas en charge les événements.

Notes

Cet événement est déclenché si la propriété BackColor 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 BackColorChanged dans un gestionnaire d'événements.Cet exemple requiert que vous avez un contrôle d'RectangleShape nommé RectangleShape1 sur un formulaire.

Private Sub RectangleShape1_BackColorChanged(
  ) Handles RectangleShape1.BackColorChanged

    ' The BackStyle must be Opaque or the BackColor has no effect.
    If RectangleShape1.BackStyle = BackStyle.Transparent Then
        RectangleShape1.BackStyle = BackStyle.Opaque
    End If
End Sub
private void rectangleShape1_BackColorChanged(object sender, System.EventArgs e)
{
    // The BackStyle must be Opaque or the BackColor has no effect.
    if (rectangleShape1.BackStyle == BackStyle.Transparent)
    {
        rectangleShape1.BackStyle = BackStyle.Opaque;
    }
}

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)