This Project explains how to create a simple pagination using Silverlight 3.0 build int classes DataPager and PagedCollectionView.
Using PagedCollectionView it is possible to do sorting, filtering and paging functionalities:
i.e.:
PagedCollectionView pcv = new PagedCollectionView(allContacts);
pcv.PageSize = 6;
DataContext = pcv;
for more details and to see live demo visit this post:
http://silverlighttips.com/?tag=/pagination.