Skip to main content
All docs
V23.2

DxLoadingPanel.ZIndex Property

Specifies the Loading Panel’s Z-index.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[DefaultValue(1100)]
[Parameter]
public int? ZIndex { get; set; }

Property Value

Type Default Description
Nullable<Int32> 1100

The Loading Panel’s Z-index; null to calculate the Z-index automatically.

Remarks

The Loading Panel calculates its Z-index based on content that the panel covers. We recommend that you specify Z-index greater than the topmost element of the covered area.

<DxLoadingPanel Visible="true"
                ApplyBackgroundShading="true"
                ZIndex="2000"
                PositionTarget="#target-window">
</DxLoadingPanel>
See Also