Layout.OnChildMeasureInvalidated Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
OnChildMeasureInvalidated() |
Obsoletos.
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
Precaución
Subscribe to the MeasureInvalidated Event on the Children.
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 ();
[System.Obsolete("Subscribe to the MeasureInvalidated Event on the Children.")]
protected virtual void OnChildMeasureInvalidated ();
abstract member OnChildMeasureInvalidated : unit -> unit
override this.OnChildMeasureInvalidated : unit -> unit
[<System.Obsolete("Subscribe to the MeasureInvalidated Event on the Children.")>]
abstract member OnChildMeasureInvalidated : unit -> unit
override this.OnChildMeasureInvalidated : unit -> unit
Protected Overridable Sub OnChildMeasureInvalidated ()
- Atributos
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.
Datos del evento.
Comentarios
Este método tiene una implementación predeterminada y los desarrolladores de aplicaciones deben llamar a la implementación base.