DataSource for Entity Framework in WPF
C1.Data.DataSource Namespace / ClientCollectionView Class / PageChanging Event

In This Topic
    PageChanging Event
    In This Topic
    Occurs before changing the PageIndex.
    Syntax
    'Declaration
     
    Public Event PageChanging As EventHandler(Of PageChangingEventArgs)
    public event EventHandler<PageChangingEventArgs> PageChanging
    Event Data

    The event handler receives an argument of type PageChangingEventArgs containing data related to this event. The following PageChangingEventArgs properties provide information specific to this event.

    PropertyDescription
    (Inherited from System.ComponentModel.CancelEventArgs)
    Gets the index of the requested page.  
    Remarks
    This event allows to cancel the ongoing PageIndex change by setting System.ComponentModel.CancelEventArgs.Cancel to true.
    See Also