Windows.Mvvm
0.3.0
See the version list below for details.
dotnet add package Windows.Mvvm --version 0.3.0
NuGet\Install-Package Windows.Mvvm -Version 0.3.0
<PackageReference Include="Windows.Mvvm" Version="0.3.0" />
paket add Windows.Mvvm --version 0.3.0
#r "nuget: Windows.Mvvm, 0.3.0"
// Install Windows.Mvvm as a Cake Addin #addin nuget:?package=Windows.Mvvm&version=0.3.0 // Install Windows.Mvvm as a Cake Tool #tool nuget:?package=Windows.Mvvm&version=0.3.0
The MVVM Framework is a compact and simple, yet powerful implementation of the MVVM pattern for UWP. 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. |
---|---|
Universal Windows Platform | netcore50 is compatible. |
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.
- Removed all references to ReactiveUI and instead implemented custom implementations of ReactiveProperty, ReactiveCommand, ReactiveCollection, and ReactiveDerivedCollection, also now view models should either directly implement IViewModel or derive from ViewModel, because ReactiveViewModel no longer exists
- The dialog service now offers the possibility to use the file open dialog to select multiple files
- Fixed some minor bugs and code smells