SimpleShape.ClientSizeChanged (Evento)
Se produce cuando la propiedad de ClientSize 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 ClientSizeChanged As EventHandler
[BrowsableAttribute(true)]
public event EventHandler ClientSizeChanged
[BrowsableAttribute(true)]
public:
event EventHandler^ ClientSizeChanged {
void add (EventHandler^ value);
void remove (EventHandler^ value);
}
[<BrowsableAttribute(true)>]
member ClientSizeChanged : IEvent<EventHandler,
EventArgs>
JScript no admite eventos.
Comentarios
Este evento se provoca si la propiedad ClientSize 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 ClientSizeChanged en un controlador de eventos.Este ejemplo requiere tener un control de RectangleShape denominado RectangleShape1 en un formulario.
Private Sub RectangleShape1_ClientSizeChanged(
) Handles RectangleShape1.ClientSizeChanged
' Restrict the shape to a certain width range.
If RectangleShape1.Width > 300 Then
RectangleShape1.Width = 300
ElseIf RectangleShape1.Width < 50 Then
RectangleShape1.Width = 50
End If
End Sub
private void rectangleShape1_ClientSizeChanged(object sender, System.EventArgs e)
{
// Restrict the shape to a certain width range.
if (rectangleShape1.Width > 300)
{
rectangleShape1.Width = 300;
}
else if (rectangleShape1.Width < 50)
{
rectangleShape1.Width = 50;
}
}
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)