0

我打电话取回超过 1000 个项目,然后我将它绑定到 windows phone 上的列表框,是否有一个属性或我可以在 xaml 中的列表框上设置的东西以仅显示一定数量的项目,或其他东西我可以,我不知道如何处理

4

2 回答 2

3

您可以使用 LINQ 语句来限制列表中的项目数... MyBindedProperty 是数据绑定到列表框的属性。

    List<string> listOfItems = GetMyBunchOfItemsFromSomewhere();
    numberOfRecords = 10;
    MyBindedProperty = listOfItems.Take(numberOfRecords);
于 2013-08-07T08:56:35.810 回答
0

非常有帮助的教程!检测列表框何时达到其限制

http://blogs.microsoft.co.il/blogs/shair/archive/2011/04/06/wp7-how-to-extend-listbox-when-reaching-last-item.aspx?CommentPosted=true#commentmessage

于 2013-08-07T07:21:29.007 回答