我想在我的Silverlight
应用程序中实现服务器端分页。为了了解我需要的步骤,我浏览了 asp.net
文章中的这个自定义分页,他们在其中描述了如何设计查询以SQL
根据. 然而,我对如何从我的 Silverlight 应用程序中调用它感到非常困惑。就像我将如何在代码中指定它一样。Page Requested
Total no of records per page
c#
使用的默认分页DataPager
非常简单。
PagedCollectionView pagingCollection = new PagedCollectionView(e.Result); //e.Result contains `List` returned by the method that calls the stored procedure GetProducts
pagerProductGrids.Source = pagingCollection;
gridProductGrid.ItemsSource = pagingCollection;
但我对自己做这件事的程序一无所知。就像我将需要什么属性get
和set
,等等Page Size
,total no of records
即我将如何配置我的DataGrid
andDataPager
来传递StartingRowIndex
和Maximum RowcOunt
请帮忙!