Back to Devexpress

DxFlyout.Closed Event

blazor-devexpress-dot-blazor-dot-dxflyout-a0fc1507.md

latest1.6 KB
Original Source

DxFlyout.Closed Event

Fires after the flyout window is closed.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
[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:

PropertyDescription
CancellationTokenSpecifies 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

DxFlyout Class

DxFlyout Members

DevExpress.Blazor Namespace