System.Windows.Mvvm
0.2.7
See the version list below for details.
dotnet add package System.Windows.Mvvm --version 0.2.7
NuGet\Install-Package System.Windows.Mvvm -Version 0.2.7
<PackageReference Include="System.Windows.Mvvm" Version="0.2.7" />
paket add System.Windows.Mvvm --version 0.2.7
#r "nuget: System.Windows.Mvvm, 0.2.7"
// Install System.Windows.Mvvm as a Cake Addin #addin nuget:?package=System.Windows.Mvvm&version=0.2.7 // Install System.Windows.Mvvm as a Cake Tool #tool nuget:?package=System.Windows.Mvvm&version=0.2.7
The MVVM Framework is a compact and simple, yet powerful implementation of the MVVM pattern. It provides a strong model for managing the application lifecycle and the navigation. The MVVM framework decouples operation system functionality from the application logic by providing a powerful service system, which abstracts away any platform specific code from the application logic. Everything in the framework was build with the task awaitable pattern in mind, from application lifecycle management to navigation. The framework plays nice with all kinds of frameworks, for example the dependency injection mechanism build into the framework does not care what
Product | Versions 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. |
-
.NETFramework 4.5.2
- EntityFramework (>= 6.1.3)
- Newtonsoft.Json (>= 8.0.2)
- reactiveui (>= 6.5.0)
- reactiveui-core (>= 6.5.0)
- Rx-Core (>= 2.2.5)
- Rx-Interfaces (>= 2.2.5)
- Rx-Linq (>= 2.2.5)
- Rx-Main (>= 2.2.5)
- Rx-PlatformServices (>= 2.2.5)
- Rx-XAML (>= 2.2.5)
- Splat (>= 1.6.2)
- System.InversionOfControl.Abstractions (>= 0.1.0)
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.3.7 | 2,800 | 6/28/2016 | |
0.3.6 | 1,525 | 6/26/2016 | |
0.3.5 | 1,709 | 5/16/2016 | |
0.3.4 | 1,507 | 5/12/2016 | |
0.3.3 | 1,320 | 5/12/2016 | |
0.3.2 | 1,398 | 5/9/2016 | |
0.3.1 | 1,441 | 5/1/2016 | |
0.3.0 | 1,326 | 5/1/2016 | |
0.2.9 | 1,770 | 4/21/2016 | |
0.2.8 | 1,610 | 4/20/2016 | |
0.2.7 | 1,481 | 3/28/2016 | |
0.2.6 | 1,419 | 3/27/2016 | |
0.2.5 | 1,532 | 3/26/2016 | |
0.2.4 | 1,445 | 3/25/2016 | |
0.2.3 | 2,163 | 3/22/2016 | |
0.2.2 | 1,320 | 3/19/2016 | |
0.2.1 | 1,519 | 2/4/2016 | |
0.2.0 | 1,492 | 2/4/2016 | |
0.1.8 | 1,564 | 1/31/2016 | |
0.1.7 | 1,515 | 1/22/2016 | |
0.1.6 | 1,500 | 1/22/2016 | |
0.1.5 | 1,603 | 1/21/2016 | |
0.1.4 | 1,587 | 1/21/2016 | |
0.1.3 | 1,772 | 1/21/2016 | |
0.1.2 | 1,769 | 1/18/2016 | |
0.1.1 | 1,933 | 1/17/2016 | |
0.1.0 | 1,543 | 1/17/2016 |
Fixed a problem in the enum display name value converter. If the resource existed, but was empty, then not an empty string, but the name of the enum value was returned. Also added a custom boolean to visibility value converter, which, unlike the standard boolean to visibility converter, does not return DependencyProperty.UnsetValue, when the input value is null, but it returns Visibility.Collapsed. This is very helpful, when the binding is asynchronous, because in an asynchronous binding, the value can be undetermined (i.e. null) for a short amount of time, which results in the control to be displayed for a short period of time, even if the binding value eventually evaluates to false.