Skip to main content
Bar

TabFormControlBase.SelectedPageChanged Event

Fires when the TabFormPage currently selected in the TabForm has changed.

Namespace: DevExpress.XtraBars

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public event TabFormSelectedPageChangedEventHandler SelectedPageChanged

Event Data

The SelectedPageChanged event's data class is DevExpress.XtraBars.TabFormSelectedPageChangedEventArgs.

Remarks

The SelectedPageChanged event is fired when the currently selected TabFormPage (see TabFormControlBase.SelectedPage) has changed. The PrevPage and Page properties of the event arguments return the previous and new value, respectively.

You can also handle the TabFormControlBase.SelectedPageChanging event that fires when the selection is about to be changed, and allows you to cancel the action.

See Also