BFF.DataVirtualizingCollection icon indicating copy to clipboard operation
BFF.DataVirtualizingCollection copied to clipboard

This is an approach to data virtualizing collections intended to be used in WPF projects.

Results 4 BFF.DataVirtualizingCollection issues
Sort by recently updated
recently updated
newest added

```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 =...

bug

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...

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...