Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DxFlyout.Closed Event

Fires after the flyout window is closed.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
[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