Bagikan melalui


Layout.OnChildMeasureInvalidated Method

Definition

Overloads

OnChildMeasureInvalidated()

Invoked whenever a child of the layout has emitted MeasureInvalidated. Implement this method to add class handling for this event.

OnChildMeasureInvalidated(Object, EventArgs)

Invoked whenever a child of the layout has emitted MeasureInvalidated. Implement this method to add class handling for this event.

OnChildMeasureInvalidated()

Source:
Layout.cs
Source:
Layout.cs

Invoked whenever a child of the layout has emitted MeasureInvalidated. Implement this method to add class handling for this event.

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

Applies to

OnChildMeasureInvalidated(Object, EventArgs)

Source:
Layout.cs
Source:
Layout.cs

Invoked whenever a child of the layout has emitted MeasureInvalidated. Implement this method to add class handling for this event.

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)

Parameters

sender
Object

The child element whose preferred size changed.

e
EventArgs

The event data.

Remarks

This method has a default implementation and application developers must call the base implementation.

Applies to