Skip to main content

DxWindow.ZIndex Property

Specifies the Window’s Z-index.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[Parameter]
public int? ZIndex { get; set; }

Property Value

Type Description
Nullable<Int32>

The Window’s Z-index; null if the Z-index is calculated automatically.

Remarks

You can show multiple Windows simultaneously. Their Z-index is calculated based on the display order: 1050 for the first Window, which increases for Windows shown later. For more information, refer to the following Bootstrap help topic: Z-index.

Specify the ZIndex property to change a Window’s Z-index.

See Also