Evento SimpleShape.LocationChanged
Ocorre quando o Location a propriedade de uma forma é alterada.
Namespace: Microsoft.VisualBasic.PowerPacks
Assembly: Microsoft.VisualBasic.PowerPacks.Vs (em Microsoft.VisualBasic.PowerPacks.Vs.dll)
Sintaxe
'Declaração
<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 não oferece suporte a eventos.
Comentários
Este evento é gerado se a Location propriedade é alterada por uma modificação através de programação ou a interação do usuário.
Para obter mais informações sobre como manipular eventos, consulte Consumindo eventos.
Exemplos
O exemplo a seguir mostra como responder para o LocationChanged evento em um manipulador de eventos.Este exemplo requer que você tenha duas RectangleShape controles denominados RectangleShape1 e RectangleShape2 em um formulário.
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);
}
}
Segurança do .NET Framework
- Confiança total para o chamador imediato. O membro não pode ser usado por código parcialmente confiável. Para obter mais informações, consulte Usando bibliotecas de código parcialmente confiáveis.
Consulte também
Referência
Namespace Microsoft.VisualBasic.PowerPacks
Outros recursos
Introdução à linha e controles Shape (Visual Studio)
Como: desenhar linhas com o controle de LineShape (Visual Studio)
Como: desenhar formas com os controles de RectangleShape (Visual Studio) e o OvalShape