AbsoluteLayout.OnChildAdded(Element) 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.
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.