Skip to main content

DataPager.PageIndexChanged Event

Occurs after the active page has been changed.

Namespace: DevExpress.Xpf.Editors.DataPager

Assembly: DevExpress.Xpf.Core.v14.2.dll

#Declaration

public event EventHandler<DataPagerPageIndexChangedEventArgs> PageIndexChanged

#Event Data

The PageIndexChanged event's handler receives an argument of the DataPagerPageIndexChangedEventArgs type. The following properties provide information specific to this event:

Property Description
NewValue Gets the active page's index.
OldValue Gets the previously active page's index.

#Remarks

Before the active page is changed, the Data Pager fires the DataPager.PageIndexChanging event, allowing the action to be changed. After the active page has been changed, the PageIndexChanged event is fired.

See Also