Back to Devexpress

DxLoadingPanel.IndicatorAreaVisible Property

blazor-devexpress-dot-blazor-dot-dxloadingpanel-bcbec232.md

latest1.6 KB
Original Source

DxLoadingPanel.IndicatorAreaVisible Property

Specifies the indicator’s area visibility.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
[DefaultValue(true)]
[Parameter]
public bool IndicatorAreaVisible { get; set; }

Property Value

TypeDefaultDescription
Booleantrue

true to display the area; otherwise, false.

|

Remarks

The Loading Panel displays its indicator and Text in a container that applies shades, borders, background, and other styles – area. You can display or remove these styles:

The following example sets the IndicatorAreaVisible to false to hide the indicator area:

razor
<DxLoadingPanel Visible="true"
                IndicatorAreaVisible="false"
                CssClass="w-100">
    <DxMemo @bind-Text="@Text"
            Rows="10" />
</DxLoadingPanel>

Note that if you shade the background (the ApplyBackgroundShading is true) and hide the indicator area, the indicator uses colors that contrast with the shade instead of theme-based ones.

See Also

DxLoadingPanel Class

DxLoadingPanel Members

DevExpress.Blazor Namespace