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

XtraTabControl.HotTrackedPageChanged Event

Fires after the hot-tracked page header has been changed.

Namespace: DevExpress.XtraTab

Assembly: DevExpress.XtraEditors.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[DXCategory("Behavior")]
public event TabPageChangedEventHandler HotTrackedPageChanged

#Event Data

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

Property Description
Page Gets the tab page currently being processed.
PrevPage Gets the previously processed tab page.

#Remarks

This event is raised each time the mouse pointer is moved from one page header to another by an end-user or after the XtraTabControl.HotTrackedTabPage property’s value has been changed via code. The event parameter’s TabPageChangedEventArgs.Page and TabPageChangedEventArgs.PrevPage properties allow the currently and previously hot-tracked tab pages to be identified.

See Also