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

PageIndexChangingEventArgs Class

Provides data for the Book.PageIndexChanging event.

Namespace: DevExpress.Xpf.Controls

Assembly: DevExpress.Xpf.Controls.v24.2.dll

NuGet Package: DevExpress.Wpf.Controls

#Declaration

public class PageIndexChangingEventArgs :
    CancelEventArgs

#Remarks

The Book.PageIndexChanging event is raised when an end-user is about to open a new page, allowing you to cancel the action. To do this, set the Cancel property to true.

Use the PageIndexChangingEventArgs.OldPageIndex and PageIndexChangingEventArgs.NewPageIndex properties to obtain indexes of the previously opened page, and the page an end-user is trying to open, respectively. You can navigate to an arbitrary page by assigning the appropriate page index to the PageIndexChangingEventArgs.NewPageIndex property.

#Inheritance

Object
EventArgs
CancelEventArgs
PageIndexChangingEventArgs
See Also