DashMVVM 0.2.3

dotnet add package DashMVVM --version 0.2.3
NuGet\Install-Package DashMVVM -Version 0.2.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DashMVVM" Version="0.2.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DashMVVM --version 0.2.3
#r "nuget: DashMVVM, 0.2.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install DashMVVM as a Cake Addin
#addin nuget:?package=DashMVVM&version=0.2.3

// Install DashMVVM as a Cake Tool
#tool nuget:?package=DashMVVM&version=0.2.3

Inspired by MvvmCross for Xamarin.Android and Xamarin.iOS, this is a basic Mvvm library for WinForms that seeks to channel the ease, structure and clarity that simple, robust and predictable databinding brings to apps.

Product Compatible and additional computed target framework versions.
.NET Framework net452 is compatible.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.2.3 1,230 12/22/2016
0.2.2 1,024 10/22/2016
0.2.1 992 10/22/2016
0.1.9 995 10/21/2016
0.1.8 1,019 10/16/2016
0.1.7 991 8/19/2016
0.1.6 1,090 8/3/2016
0.1.5 1,267 8/3/2016
0.1.4 1,216 8/3/2016
0.1.3 1,050 7/4/2016
0.1.2 1,019 7/3/2016
0.1.1 989 7/3/2016
0.1.0 1,060 7/2/2016
0.0.9 1,001 7/2/2016
0.0.8 1,281 6/26/2016
0.0.7 1,020 6/23/2016
0.0.6 975 6/21/2016
0.0.5 1,024 6/21/2016
0.0.4 1,420 6/18/2016
0.0.3 1,836 6/13/2016

Version 0.2.3 Removed all references to FeatherMvvm
       Version 0.2.2 Renamed FlickerlessListView to DashListView and did bugfixes.
       Version 0.2.1 Added code to make adding items to a ListView more effcient by detecting items already in the list and just adding the missing ones. Also added a new ListView type 'FlickerlessListView' that flickers less with each update.
       Version 0.2.0 Bug fix in the way column grouping is performed.
Version 0.1.9 Added capability to group ListView items by decorating the grouping column with an attribute.
       Version 0.1.8 Minor bugfixes
       Version 0.1.7 Added basic IOC functionality
       Version 0.1.6 - Fixed bug that caused binding to multiple properties of the same view to different view model properties to cause DashMVVM to attempt to write to all of the bound view properties when just one view model property was updated.
Version 0.1.5 - Added support for binding of arbitrary properties of arbitrary objects
       Version 0.1.4 - Changed textbox binding event from TextChanged to KeyUp to cater for cases when a textbox was cleared via backspace key.
       Version 0.1.3 - Fixed bug causing crash when trying to list an object with a null property in a list. Also fixed bug causing list to display repeated values in columns.
       Version 0.1.2 - Added initial support for checkboxes.
       Version 0.1.1 - Misc bug fixes.
       Version 0.1.0 - Fixed below bug but for real this time.
       Version 0.0.9 - Fixed bug causing ListViews without columns not to populate.
       Version 0.0.8 - Improved support for ListViews by adding capability to specify column headers and their widths.
       Version 0.0.7 - Transfered binding functionality from DashView to a DashViewHandle component, this allows binding without necessarily inheriting the DashView
       Version 0.0.6 - Fixed bug that was causing the Binder to attempt to assign values to comboboxes on background threads instead of the UI thread in multithreaded code.
       Version 0.0.5 - Improved support for Comboboxes by implementing two-way binding.
       Version 0.0.4 - Added support for Comboboxes
       https://github.com/nyingi/DashMVVM/blob/master/README.md