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() |
Obsolete.
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
Caution
Subscribe to the MeasureInvalidated Event on the Children.
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 ();
[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 ()
- Attributes
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.
The event data.
Remarks
This method has a default implementation and application developers must call the base implementation.