.netwpfpaginationlistbox

How to apply paging for a listbox wpf


I want to apply paging to the list box which contains 1000s of records.


Solution

  • There is no out of the box solution for listbox.Listbox and all wpf controls works on views.If you bind a data to the listbox,what exactly being displayed is a view of your data.You can easily build your own mechanism to minimize the data on the view and implement a paging control to load the items as necessary.

    checkout http://www.codeproject.com/kb/wpf/wpf_paging.aspx