Layout.OnChildMeasureInvalidated Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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()
Invoked whenever a child of the layout has emitted MeasureInvalidated. Implement this method to add class handling for this event.
protected virtual void OnChildMeasureInvalidated ();
abstract member OnChildMeasureInvalidated : unit -> unit
override this.OnChildMeasureInvalidated : unit -> unit
Applies to
OnChildMeasureInvalidated(Object, EventArgs)
Invoked whenever a child of the layout has emitted MeasureInvalidated. Implement this method to add class handling for this event.
protected void OnChildMeasureInvalidated (object sender, EventArgs e);
member this.OnChildMeasureInvalidated : obj * EventArgs -> unit
Parameters
- sender
- System.Object
The child element whose preferred size changed.
- e
- System.EventArgs
The event data.
Remarks
This method has a default implementation and and application developers must call the base implementation.