BFF.DataVirtualizingCollection
BFF.DataVirtualizingCollection copied to clipboard
This is an approach to data virtualizing collections intended to be used in WPF projects.
```csharp #region using System; using System.Collections.Generic; using System.Reactive.Concurrency; using System.Runtime.CompilerServices; using System.Threading; using System.Threading.Tasks; using BFF.DataVirtualizingCollection.DataVirtualizingCollection; #endregion namespace ConsoleApp11 { internal static class Program { public static int Version =...
Slow
There is a problem in wpf, with fast scrolling, many pages are requested and until all of them are received, the data is not displayed. 1) I suggest displaying data...
This is my current config: ```cs ThrottledLifoPageRequests().AsyncIndexAccess((a, b) => { return new T(); }); ``` Question 1: It all works beautifully when used in a Grid, but what do I...
Sorting
This may be a stupid question and out of the scope of this project, but let's say I bind this to a DataGrid and I use the collection to fetch...