Skip to main content
Bar

TabFormControlBase.PageClosed Event

Fires after a page is closed.

Namespace: DevExpress.XtraBars

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public event PageClosedEventHandler PageClosed

Event Data

The PageClosed event's data class is DevExpress.XtraBars.PageClosedEventArgs.

Remarks

The PageClosed event fires when a page is closed using the built-in close button (see TabFormControlBase.ShowTabCloseButtons), or in code using the TabFormControlBase.ClosePage method. The Page argument allows you to determine the closed page.

The PageClosed event fires after the TabFormControlBase.PageClosing event, which allows you to cancel the action if required.

See Also