Skip to main content
All docs
V25.1
  • DxLoadingPanel.VisibleChanged Event

    Fires when the Loading Panel’s visibility changes.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.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 following code snippet 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