Partager via


SimpleShape.LocationChanged, événement

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

Notes

Cet événement est déclenché si le Location propriété est modifiée par une modification par programme ou une interaction utilisateur.

Pour plus d'informations sur la façon de gérer les événements, consultez Gestion et déclenchement d'événements.

Exemples

L'exemple suivant montre comment répondre à la LocationChanged événements dans un gestionnaire d'événements. Cet exemple suppose que vous avez deux RectangleShape contrôles RectangleShape1 et RectangleShape2 sur un formulaire.

Private Sub RectangleShape1_LocationChanged(
  ) Handles RectangleShape1.LocationChanged

    ' If the second rectangle intersects with the first, move it. 
    If RectangleShape1.ClientRectangle.IntersectsWith( 
      RectangleShape2.ClientRectangle) Then
        RectangleShape2.Location = New Point(RectangleShape1.Right, 
         RectangleShape1.Bottom)
    End If 
End Sub
private void rectangleShape1_LocationChanged(object sender, System.EventArgs e)
{
    // If the second rectangle intersects with the first, move it. 
    if (rectangleShape1.ClientRectangle.IntersectsWith(rectangleShape2.ClientRectangle))
    {
        rectangleShape2.Location = new Point(rectangleShape1.Right, 
            rectangleShape1.Bottom);
    }
}

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)