Suggestion: datagrid should expose current page

There are methods to navigate the datagrid (FirstPage, GoToPage, NextPage, LastPage, PrevPage) but I do not see any methods/properties to access the current page number.

I'd want to show something like Showing page 3 of 24 (334 records)
I can use the Count property for the number of records. I can calculate the total number of pages using the PageSize, and using Query.Skip I can get the current page, but I think that the datagrid should expose at least the current page number as a public property.

1 Like