AbsoluteLayout.OnChildAdded(Element) Method

Definition

Called when a child is added to the AbsoluteLayout.

protected override void OnChildAdded (Xamarin.Forms.Element child);
override this.OnChildAdded : Xamarin.Forms.Element -> unit

Parameters

child
Element

The element that was added to the children.

Remarks

Application developers can override OnChildAdded(Element) to change the default behavior thata is triggered when a child is added. When doing so, it is recommended to call the base OnChildAdded(Element) method and then add additional logic.

Applies to