Compartir a través de


Layout.OnChildMeasureInvalidated Método

Definición

Sobrecargas

OnChildMeasureInvalidated()

Se invoca cuando un elemento secundario del diseño ha emitido MeasureInvalidated. Implemente este método a fin de agregar el control de clases para este evento.

OnChildMeasureInvalidated(Object, EventArgs)

Se invoca cuando un elemento secundario del diseño ha emitido MeasureInvalidated. Implemente este método a fin de agregar el control de clases para este evento.

OnChildMeasureInvalidated()

Source:
Layout.cs
Source:
Layout.cs

Se invoca cuando un elemento secundario del diseño ha emitido MeasureInvalidated. Implemente este método a fin de agregar el control de clases para este evento.

protected:
 virtual void OnChildMeasureInvalidated();
protected virtual void OnChildMeasureInvalidated ();
abstract member OnChildMeasureInvalidated : unit -> unit
override this.OnChildMeasureInvalidated : unit -> unit
Protected Overridable Sub OnChildMeasureInvalidated ()

Se aplica a

OnChildMeasureInvalidated(Object, EventArgs)

Source:
Layout.cs
Source:
Layout.cs

Se invoca cuando un elemento secundario del diseño ha emitido MeasureInvalidated. Implemente este método a fin de agregar el control de clases para este evento.

protected:
 void OnChildMeasureInvalidated(System::Object ^ sender, EventArgs ^ e);
protected void OnChildMeasureInvalidated (object sender, EventArgs e);
member this.OnChildMeasureInvalidated : obj * EventArgs -> unit
Protected Sub OnChildMeasureInvalidated (sender As Object, e As EventArgs)

Parámetros

sender
Object

Elemento secundario cuyo tamaño preferido ha cambiado.

e
EventArgs

Datos del evento.

Comentarios

Este método tiene una implementación predeterminada y los desarrolladores de aplicaciones deben llamar a la implementación base.

Se aplica a