Skip to main content

DxFlyout.Closed Event

Fires after the flyout window is closed.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[Parameter]
public EventCallback<FlyoutClosedEventArgs> Closed { get; set; }

Event Data

The Closed event's data class is FlyoutClosedEventArgs. The following properties provide information specific to this event:

Property Description
CancellationToken Specifies an object that propagates a cancellation notification.

Remarks

Handle the Closed event to process close actions. This event occurs in the following cases:

  • A user closes the flyout window: clicks outside the window boundaries or presses Escape.
  • You set the IsOpen property to false.
  • You call the CloseAsync method.
  • The window is closed in a custom way (the CloseCallback delegate is called from any template).

Handle the Closing event to perform actions before the flyout window is closed.

See Also