0

I am working with an application that is written for us by a third party company. In this application we want to have a sort of file system so we can download files that are on the machine where the silverlight application is running on. To list all the files, they have used a DataGrid. From this datagrid files can be downloaded to your machine. (Silverlight application can be access through the web).

Now I'm working with this application for a while and the number of files are growing (each day new files are generated) the datagrid is not showing any data. I tested and the limit is at 286 files, with 19 files on each page. With 287 files, the DataGrid is not showing any data.

I'm familiar with programming languages, but Silverlight / C# is relatively new to me.

Edit: Of course I looked into the code but there is no limit on more then 286.

So my question, is there a limit for the DataGrid for the number of items / rows that it can handle?

Thanks in advance!

4

1 回答 1

0

DataGrid 可以显示的行数没有(合理的)限制。我成功地将 1000 多行加载到网格中。也许行为与分页的完成方式有关?是否定义了最大页数?

于 2012-10-05T09:59:27.593 回答