-
-
Notifications
You must be signed in to change notification settings - Fork 77
What MVVM Dialogs will do for you
FantasticFiasco edited this page Aug 27, 2022
·
5 revisions
This library will address one of the problems you might run into when using the MVVM pattern in WPF, namely opening dialogs from view models.
It is not a complete all-inclusive MVVM framework. It is designed to simplify the concept of opening dialogs from a view model when using MVVM. It does a pretty good job of that but nothing else. It doesn't contain any fancy view model base classes, nor any event broker or service locator. The only extra benefit you'll get is the ability to easily write unit tests for your view models in the same manner unit tests are written for other classes. That you will get.
- Modal dialogs
- Non-modal dialogs
- Custom modal dialogs
- Custom non-modal dialogs
- Message boxes
- Open file dialogs
- Save file dialogs
- Folder browser dialogs
Introduction
Dialog types
- Modal and non‐modal dialogs
- Message box
- Open file dialog
- Save file dialog
- Folder browser dialog
- Custom modal and non‐modal dialogs
- Custom message box
- Custom open file dialog
- Custom save file dialog
- Custom folder browser dialog
Configuration
Advanced usage