public class PaginableObservableCollection : ObservableCollection
{
public int PageSize { get; set; }
public ObservableCollection Items { get; set; }
public PaginableObservableCollection(ObservableCollection items, int pageSize)
{
Items = items;
PageSize = pageSize;
}
public int TotalPages
{
get
{
if (Items == null || Items.Count == 0 || PageSize
Подробнее здесь: [url]https://stackoverflow.com/questions/79784289/paginable-observablecollection[/url]