Skip to main content
All docs
V24.1

DxLoadingPanel.VisibleChanged Event

Fires when the Loading Panel’s visibility changes.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.1.dll

NuGet Package: DevExpress.Blazor

Declaration

[Parameter]
public EventCallback<bool> VisibleChanged { get; set; }

Parameters

Type Description
Boolean

The new Visible property value.

Remarks

Handle the VisibleChanged event to respond to changes. The example below displays a message after a user clicks a Loading Panel to close it:

<DxLoadingPanel Visible="@Visible"
                VisibleChanged="VisibleChanged"
                ApplyBackgroundShading="true"
                CloseOnClick="true"
                CssClass="w-100">
    <DxMemo @bind-Text="@Text"
            Rows="10" />
</DxLoadingPanel>

Change visibility

See Also