Share via


Layout.RaiseChild(View) Method

Definition

Caution

Use the ZIndex Property instead

Sends a child to the front of the visual stack.

public:
 void RaiseChild(Microsoft::Maui::Controls::View ^ view);
public void RaiseChild (Microsoft.Maui.Controls.View view);
[System.Obsolete("Use the ZIndex Property instead")]
public void RaiseChild (Microsoft.Maui.Controls.View view);
member this.RaiseChild : Microsoft.Maui.Controls.View -> unit
[<System.Obsolete("Use the ZIndex Property instead")>]
member this.RaiseChild : Microsoft.Maui.Controls.View -> unit
Public Sub RaiseChild (view As View)

Parameters

view
View

The view to raise in the visual stack.

Attributes

Remarks

Children are internally stored in visual stack order. This means that raising or lowering a child also changes the order in which the children are enumerated.

Applies to