AppWindow.MoveInZOrderBelow(WindowId) 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.
Moves the current window to be below the specified window in the Z-order.
public:
virtual void MoveInZOrderBelow(WindowId windowId) = MoveInZOrderBelow;
void MoveInZOrderBelow(WindowId const& windowId);
public void MoveInZOrderBelow(WindowId windowId);
function moveInZOrderBelow(windowId)
Public Sub MoveInZOrderBelow (windowId As WindowId)
Parameters
- windowId
- WindowId
The identifier of the window to place the current window below.
Remarks
This method lets you set or modify your window's position in the Z-order. You do this by passing in a valid WindowId
for the window your window will be placed below in z-order. To place your window at the top of the z-order, use MoveInZOrderAtTop. To place it at the bottom, use MoveInZOrderAtBottom.