IPagedCollectionView Interface
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Defines methods and properties that a collection view implements to provide paging capabilities to a collection.
Namespace: System.ComponentModel
Assembly: System.Windows.Data (in System.Windows.Data.dll)
Syntax
'Declaration
Public Interface IPagedCollectionView
public interface IPagedCollectionView
The IPagedCollectionView type exposes the following members.
Properties
Name | Description | |
---|---|---|
CanChangePage | Gets a value that indicates whether the PageIndex value can change. | |
IsPageChanging | Gets a value that indicates whether the page index is changing. | |
ItemCount | Gets the number of known items in the view before paging is applied. | |
PageIndex | Gets the zero-based index of the current page. | |
PageSize | Gets or sets the number of items to display on a page. | |
TotalItemCount | Gets the total number of items in the view before paging is applied. |
Top
Methods
Name | Description | |
---|---|---|
MoveToFirstPage | Sets the first page as the current page. | |
MoveToLastPage | Sets the last page as the current page. | |
MoveToNextPage | Moves to the page after the current page. | |
MoveToPage | Moves to the page at the specified index. | |
MoveToPreviousPage | Moves to the page before the current page. |
Top
Events
Name | Description | |
---|---|---|
PageChanged | When implementing this interface, raise this event after the PageIndex has changed. | |
PageChanging | When implementing this interface, raise this event before changing the PageIndex. The event handler can cancel this event. |
Top
Version Information
Silverlight
Supported in: 5, 4, 3
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
See Also