Shape.Move-Ereignis
Tritt ein, wenn das Formular verschoben wird.
Namespace: Microsoft.VisualBasic.PowerPacks
Assembly: Microsoft.VisualBasic.PowerPacks.Vs (in Microsoft.VisualBasic.PowerPacks.Vs.dll)
Syntax
'Declaration
<BrowsableAttribute(True)> _
Public Event Move As EventHandler
[BrowsableAttribute(true)]
public event EventHandler Move
[BrowsableAttribute(true)]
public:
event EventHandler^ Move {
void add (EventHandler^ value);
void remove (EventHandler^ value);
}
[<BrowsableAttribute(true)>]
member Move : IEvent<EventHandler,
EventArgs>
JScript unterstützt keine Ereignisse.
Hinweise
Das Move-Ereignis tritt nur ein, wenn die Position des Containers hinsichtlich einer Form nicht geändert werden, wenn der Container verschoben wird.
Weitere Informationen zur Ereignisbehandlung finden Sie unter Behandeln von Ereignissen.
Beispiele
Im folgenden Beispiel wird die Reaktion auf das Move-Ereignis in einem Ereignishandler veranschaulicht.Dieses Beispiel setzt voraus, dass Sie ein OvalShape-Steuerelement mit dem Namen OvalShape1 und ein RectangleShape-Steuerelement, das in einem Formular RectangleShape1.
Private Sub OvalShape1_Move() Handles OvalShape1.Move
Dim rect As New Rectangle
' Get the bounding rectangle for the rectangle shape.
rect = RectangleShape1.DisplayRectangle
' Determine whether the bounding rectangles overlap.
If rect.IntersectsWith(OvalShape1.DisplayRectangle) Then
' Bring the oval shape to the front.
OvalShape1.BringToFront()
End If
End Sub
private void ovalShape1_Move(object sender, System.EventArgs e)
{
Rectangle rect = new Rectangle();
// Get the bounding rectangle for the rectangle shape.
rect = rectangleShape1.DisplayRectangle;
// Determine whether the bounding rectangles overlap.
if (rect.IntersectsWith(ovalShape1.DisplayRectangle))
// Bring the oval shape to the front.
{
ovalShape1.BringToFront();
}
}
.NET Framework-Sicherheit
- Volle Vertrauenswürdigkeit für den unmittelbaren Aufrufer. Dieser Member kann von nur teilweise vertrauenswürdigem Code nicht verwendet werden. Weitere Informationen finden Sie unter Verwenden von Bibliotheken aus teilweise vertrauenswürdigem Code.
Siehe auch
Referenz
Microsoft.VisualBasic.PowerPacks-Namespace
Weitere Ressourcen
Gewusst wie: Zeichnen von Linien mit dem LineShape-Steuerelement (Visual Studio)
Einführung in das Line-Steuerelement und das Shape-Steuerelement (Visual Studio)