SimpleShape.SizeChanged (Evento)
Se produce cuando la propiedad de Size de una forma cambia.
Espacio de nombres: Microsoft.VisualBasic.PowerPacks
Ensamblado: Microsoft.VisualBasic.PowerPacks.Vs (en Microsoft.VisualBasic.PowerPacks.Vs.dll)
Sintaxis
'Declaración
<BrowsableAttribute(True)> _
Public Event SizeChanged As EventHandler
[BrowsableAttribute(true)]
public event EventHandler SizeChanged
[BrowsableAttribute(true)]
public:
event EventHandler^ SizeChanged {
void add (EventHandler^ value);
void remove (EventHandler^ value);
}
[<BrowsableAttribute(true)>]
member SizeChanged : IEvent<EventHandler,
EventArgs>
JScript no admite eventos.
Comentarios
Este evento se provoca si la propiedad Size se modifica mediante programación o interacción del usuario.
Para obtener más información acerca de cómo controlar eventos, vea Utilizar eventos.
Ejemplos
En el ejemplo siguiente se muestra cómo responder al evento SizeChanged en un controlador de eventos.Este ejemplo requiere tener dos controles de RectangleShape denominados RectangleShape1 y RectangleShape2 en un formulario.
Private Sub RectangleShape1_SizeChanged() Handles RectangleShape1.SizeChanged
' 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_SizeChanged(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);
}
}
Seguridad de .NET Framework
- Plena confianza para el llamador inmediato. Un código de confianza parcial no puede utilizar este miembro. Para obtener más información, vea Utilizar bibliotecas de código que no es de plena confianza.
Vea también
Referencia
Microsoft.VisualBasic.PowerPacks (Espacio de nombres)
Otros recursos
Introducción a los controles de líneas y formas (Visual Studio)
Cómo: Dibujar líneas con el control LineShape (Visual Studio)
Cómo: Dibujar formas con los controles OvalShape y RectangleShape (Visual Studio)