Compartilhar via


Layout.OnChildMeasureInvalidated Método

Definição

Sobrecargas

OnChildMeasureInvalidated()
Obsoleto.

Invocado sempre que um filho do layout emitiu MeasureInvalidated. Implemente esse método para adicionar tratamento de classe a esse evento.

OnChildMeasureInvalidated(Object, EventArgs)

Invocado sempre que um filho do layout emitiu MeasureInvalidated. Implemente esse método para adicionar tratamento de classe a esse evento.

OnChildMeasureInvalidated()

Origem:
Layout.cs
Origem:
Layout.cs

Cuidado

Subscribe to the MeasureInvalidated Event on the Children.

Invocado sempre que um filho do layout emitiu MeasureInvalidated. Implemente esse método para adicionar tratamento de classe a esse 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

Aplica-se a

OnChildMeasureInvalidated(Object, EventArgs)

Origem:
Layout.cs
Origem:
Layout.cs

Invocado sempre que um filho do layout emitiu MeasureInvalidated. Implemente esse método para adicionar tratamento de classe a esse 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

O elemento filho cujo tamanho preferencial mudou.

e
EventArgs

Os dados do evento.

Comentários

Esse método tem uma implementação padrão e os desenvolvedores de aplicativos devem chamar a implementação base.

Aplica-se a