John Stewien

Results 20 comments of John Stewien

Hi @JuliaSong CollectionsV3 doesn't have any WPF specific stuff in it. Doesn't use Dispatcher, or any UI thread related stuff. Instead it has a CollectionView property that WPF based items...

@JuliaSong for some reason I only got your follow-up comments by e-mail, but they don't appear here. I haven't had much of a chance to look through them because I've...

Hi @JuliaSong do you have a binding to the selection in your view model? I find having a view model property bound to SelectedValue works in the past. I won't...

@JuliaSong this one's got me stumped, I've added a new example under "ExamplesAndTests", it has a ListView with a GridView for the view, and a DataGrid. I can select a...

I've done a workaround by changing the style on the DataGrid, here's my DataGrid xaml: ```xml ```

The issue seems to be the Cells lose their selection status, but the row selection is retained. You can see the difference between cell selection and row selection with this...

In the slither of time I had to look at this I moved the main projects into 3 directories: Swordfish.NET Swordfish.NET.Collections Swordfish.NET.CollectionsV3 They each have their own nuspec, project, and...

The issue with the current version (lets call it version 2) is that it has a dependency on PresentationFramework. At this very minute I have access to an internet connected...

I've added a new version 3 to the repo. I've looked at the dependencies and the roadblock for going to PCL is WindowsBase. This is only used by the VirtualizingCollection...

The old collections library had it's own implementation of ImmutableList, and there was the skeleton of the new V3 collections that had a dependency on Microsofts System.Collections.Immutable. The current iteration...