Layout.LowerChild(View) 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.
Caution
Use the ZIndex Property instead
Sends a child to the back of the visual stack.
public:
void LowerChild(Microsoft::Maui::Controls::View ^ view);
public void LowerChild (Microsoft.Maui.Controls.View view);
[System.Obsolete("Use the ZIndex Property instead")]
public void LowerChild (Microsoft.Maui.Controls.View view);
member this.LowerChild : Microsoft.Maui.Controls.View -> unit
[<System.Obsolete("Use the ZIndex Property instead")>]
member this.LowerChild : Microsoft.Maui.Controls.View -> unit
Public Sub LowerChild (view As View)
Parameters
- view
- View
The view to lower 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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.