MVVM Dialogs alternatives and similar packages
Based on the "MVVM" category.
Alternatively, view MVVM Dialogs alternatives based on common mentions on social networks and blogs.
-
knockout
Knockout makes it easier to create rich, responsive UIs with JavaScript -
ReactiveUI
An advanced, composable, functional reactive model-view-viewmodel framework for all .NET platforms that is inspired by functional reactive programming. ReactiveUI allows you to abstract mutable state away from your user interfaces, express the idea around a feature in one readable place and improve the testability of your application. -
Prism
Prism is a framework for building loosely coupled, maintainable, and testable XAML applications in WPF, Xamarin Forms, and Uno / Win UI Applications.. -
MVVMCross
The .NET MVVM framework for cross-platform solutions, including Xamarin.iOS, Xamarin.Android, Windows and Mac. -
Caliburn.Micro
A small, yet powerful framework, designed for building applications across all XAML platforms. Its strong support for MV* patterns will enable you to build your solution quickly, without the need to sacrifice code quality or testability. -
MVVM Light Toolkit
The main purpose of the toolkit is to accelerate the creation and development of MVVM applications in Xamarin.Android, Xamarin.iOS, Xamarin.Forms, Windows 10 UWP, Windows Presentation Foundation (WPF), Silverlight, Windows Phone. -
Gemini
Gemini is an IDE framework similar in concept to the Visual Studio Shell. It uses AvalonDock and has an MVVM architecture based on Caliburn Micro. -
Stylet
A very lightweight but powerful ViewModel-First MVVM framework for WPF for .NET Framework and .NET Core, inspired by Caliburn.Micro. -
WPF Application Framework (WAF)
Win Application Framework (WAF) is a lightweight Framework that helps you to create well structured XAML Applications. -
FreshMvvm
FreshMvvm is a super light Mvvm Framework designed specifically for Xamarin.Forms. It's designed to be Easy, Simple and Flexible. -
DotNetProjects.WpfToolkit
wpf toolkit fork of the MS WPF Toolkit (https://wpf.codeplex.com/releases/view/40535) -
Toms Toolbox
A set of core functions and classes to ease every days .Net development tasks. -
Smaragd
A platform-independent, lightweight library for developing .NET applications using the MVVM architecture -
Web-Atoms Core
Light weight feature rich UI Framework for JavaScript for Browser with Dependency Injection, Mocking and Unit Testing -
Okra App Framework
An app centric MVVM framework for Windows 8.1 built with dependency injection in mind, including a full set of Visual Studio MVVM templates. -
MvvmMicro
A clean and lightweight MVVM framework for WPF, UWP and .NET Standard 2.0 inspired by MVVM Light Toolkit. -
M.V.B.
Model View Binder - A small and robust framework for awesome cross platform architectures -
UpdateControls
Update Controls does not require that you implement INotifyPropertyChanged or declare a DependencyProperty. It connects controls directly to CLR properties. This makes it perfect for the Model/View/ViewModel pattern.
Access the most powerful time series database as a service
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of MVVM Dialogs or a related project?
README
MVVM Dialogs
Library simplifying the concept of opening dialogs from a view model when using MVVM in WPF or UWP.
Table of contents
- Introduction
- WPF usage
- UWP usage
- Custom windows
- Custom framework dialogs
- More in the wiki
- Integration into other MVVM frameworks
- MVVM Dialogs Contrib
- Install MVVM Dialogs via NuGet
- History
- Reputation
- Credit
Introduction
MVVM Dialogs is a library simplifying the concept of opening dialogs from a view model when using MVVM in WPF (Windows Presentation Framework) or UWP (Universal Windows Platform). It enables the developer to easily write unit tests for view models in the same manner unit tests are written for other classes.
The library has built in support for the following dialogs in WPF:
- Modal window
- Non-modal window
- Message box
- Open file dialog
- Save file dialog
- Folder browser dialog
The library has built in support for the following dialogs in UWP:
- Content dialog
- Message dialog
- Single file picker
- Multiple files picker
- Save file picker
- Single folder picker
WPF usage
To open a modal window, decorate the view with the attached property DialogServiceViews.IsRegistered
:
<UserControl
x:Class="DemoApplication.Features.Dialog.Modal.Views.ModalDialogTabContent"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:md="https://github.com/fantasticfiasco/mvvm-dialogs"
md:DialogServiceViews.IsRegistered="True">
...
</UserControl>
With the view registered the view model is now capable of opening a dialog using the interface IDialogService
:
public class ModalDialogTabContentViewModel : INotifyPropertyChanged
{
private readonly IDialogService dialogService;
public ModalDialogTabContentViewModel(IDialogService dialogService)
{
this.dialogService = dialogService;
}
...
private void ShowDialog()
{
var dialogViewModel = new AddTextDialogViewModel();
bool? success = dialogService.ShowDialog(this, dialogViewModel);
if (success == true)
{
Texts.Add(dialogViewModel.Text);
}
}
}
UWP usage
With UWP you don't need to register the view, simply open the dialog using the interface IDialogService
:
public class MainPageViewModel : INotifyPropertyChanged
{
private readonly IDialogService dialogService;
public MainPageViewModel(IDialogService dialogService)
{
this.dialogService = dialogService;
}
...
private async void ShowContentDialog()
{
var dialogViewModel = new AddTextContentDialogViewModel();
ContentDialogResult result = await dialogService.ShowContentDialogAsync(dialogViewModel);
if (result == ContentDialogResult.Primary)
{
Texts.Add(dialogViewModel.Text);
}
}
}
Custom windows
Dialogs in WPF that doesn't inherit from Window
, or content dialogs in UWP that doesn't inherit from ContentDialog
, are called custom dialogs. These custom dialogs are supported, but in order for DialogService
to know how to interact with them, you will have to implement the IWindow
interface in WPF or IContentDialog
in UWP.
Custom framework dialogs
MVVM Dialogs is by default opening the standard Windows message box or the open file dialog when asked to. This can however be changed by providing your own implementation of IFrameworkDialogFactory
to DialogService
.
More in the wiki
For more information regarding the concepts of MVVM Dialogs and extended samples on the subjects, please see the wiki.
Integration into other MVVM frameworks
For the benefit of all we aim to play nice with existing MVVM frameworks. Creating a new application can be daunting. Lots of decisions have to be made, and some mistakes are harder to correct than others. To help you on your way we've created a sample application using some of the popular MVVM frameworks existing today, to show you how you'd integrate MVVM Dialogs into that framework.
Currently the sample application is implemented using the following frameworks.
If your specific framework isn't among the listed, please create a new pull request and let us know.
MVVM Dialogs Contrib
The world is full of snowflakes and all applications are unique in some way. MVVM Dialogs takes no claim to solve all issues regarding dialogs, but is a fantastic solution for most applications. The rest, the applications deviating from the common path, may require specific changes to the behavior of MVVM Dialog. For those there is MVVM Dialogs Contrib. A repository with features and functionality developed by the open source community, solving very specific needs.
If MVVM Dialogs for some reason doesn't fit your application, raise an issue in MVVM Dialogs Contrib and we'll see what we can do. These features are always implemented by the community, but shepherded by the maintainers of MVVM Dialogs.
Install MVVM Dialogs via NuGet
If you want to include MVVM Dialogs in your project, you can install it directly from NuGet.
To install MVVM Dialogs, run the following command in the Package Manager Console:
PM> Install-Package MvvmDialogs
History
MVVM Dialogs started out as an article on CodeProject with its first revision published in May 2009. At that time MVVM was still new and fresh, and the now deprecated MVVM Light had yet not been published. In fact, none of the MVVM libraries commonly used today existed back then. MVVM Dialogs came about out of necessity to work with dialogs from the view model, a reaction to the fact that although MVVM was a popular pattern, the support to implement it was rather limited.
So, the initial publication was over 10 years ago. Give that a thought. An open source project that after 10 years still is maintained and extremely relevant with the release of .NET Core 3. Take that all you out there claiming open source code is volatile!
[MVVM Dialogs anniversary](doc/resources/cake.png)
Hip hip hooray!
Reputation
MVVM Dialogs has earned enough reputation to be listed on Awesome .NET!, in company with other awesome MVVM libraries.
Credit
Thank you JetBrains for your important initiative to support the open source community with free licenses to your products.
[JetBrains](./doc/resources/jetbrains.png)
*Note that all licence references and agreements mentioned in the MVVM Dialogs README section above
are relevant to that project's source code only.