Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Library simplifying the concept of opening dialogs from a view model when using MVVM in WPF

License

NotificationsYou must be signed in to change notification settings

FantasticFiasco/mvvm-dialogs


MVVM Dialogs
MVVM Dialogs

Library simplifying the concept of opening dialogs from a view model when using MVVM in WPF.

This codebase is actively maintained but not actively developed. Pull requests with new features will have a very slim chance of getting merged. In many aspects this codebase is "done".

Please feel free to use the code, but refrain from having hopes that it has any aspirations of being anything more than it currently is.

Table of contents


Introduction

MVVM Dialogs is a library simplifying the concept of opening dialogs from a view model when using MVVM in WPF (Windows Presentation Framework). 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:

  • Modal window
  • Non-modal window
  • Message box
  • Open file dialog
  • Save file dialog
  • Folder browser dialog

Usage

To open a modal window, decorate the view with the attached propertyDialogServiceViews.IsRegistered:

<UserControlx: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 interfaceIDialogService:

publicclassModalDialogTabContentViewModel:INotifyPropertyChanged{privatereadonlyIDialogServicedialogService;publicModalDialogTabContentViewModel(IDialogServicedialogService){this.dialogService=dialogService;}    ...    private voidShowDialog(){vardialogViewModel=newAddTextDialogViewModel();bool?success=dialogService.ShowDialog(this,dialogViewModel);if(success==true){Texts.Add(dialogViewModel.Text);}}}

Custom windows

Dialogs in WPF that don't inherit fromWindow are called custom dialogs. These custom dialogs are supported, but in order forDialogService to know how to interact with them, you will have to implement theIWindow interface.

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 ofIFrameworkDialogFactory toDialogService.

More in the wiki

For more information regarding the concepts of MVVM Dialogs and extended samples on the subjects, please see thewiki.

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 isMVVM 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 inMVVM 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 caninstall 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 anarticle on CodeProject with its first revision published in May 2009. At that time MVVM was still new and fresh, and the now deprecatedMVVM 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 releases of .NET. Take that all you out there claiming open source code is volatile!

Reputation

MVVM Dialogs has earned enough reputation to be listed onAwesome .NET!, in company with other awesome MVVM libraries.

Credit

Thank youJetBrains for your important initiative to support the open source community with free licenses to your products.

JetBrains

About

Library simplifying the concept of opening dialogs from a view model when using MVVM in WPF

Topics

Resources

License

Code of conduct

Contributing

Stars

Watchers

Forks

Sponsor this project

 

Contributors14

Languages


[8]ページ先頭

©2009-2025 Movatter.jp