0

我想在我的Silverlight应用程序中实现服务器端分页。为了了解我需要的步骤,我浏览了 asp.net 文章中的这个自定义分页,他们在其中描述了如何设计查询以SQL根据. 然而,我对如何从我的 Silverlight 应用程序中调用它感到非常困惑。就像我将如何在代码中指定它一样。Page RequestedTotal no of records per pagec#

使用的默认分页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; 

但我对自己做这件事的程序一无所知。就像我将需要什么属性getset,等等Page Sizetotal no of records即我将如何配置我的DataGridandDataPager来传递StartingRowIndexMaximum RowcOunt

请帮忙!

4

1 回答 1

0

几年前我看到了这篇文章,这对我来说就像一个魅力。我已将此添加到我的框架中,并且从那以后一直在重用此方法。这篇文章得到了很好的解释,我相信这正是您正在寻找的。

使用 Silverlight 从服务器分页数据

于 2016-01-28T12:53:51.903 回答