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 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>
See Also