vote up 19 vote down star
14

In the MVVM pattern for WPF, handling dialogs is one of the more complex operations. As your view model does not know anything about the view, dialog communication can be interesting. I can expose an ICommand that when the view invokes it, a dialog can appear.

Does anyone know of a good way to handle results from dialogs? I am speaking about windows dialogs such as MessageBox.

One of the ways we did this was have an event on the viewmodel that the view would subscribe to when a dialog was required.

public event EventHandler<MyDeleteArgs> RequiresDeleteDialog;

This is OK, but it means that the view requires code which is something I would like to stay away from.

flag

@Ray, Well it's only five months since you posted this, but I was wondering if you had success with Mediator for showing dialogs. I've downloaded the MVVM Foundation, and I was wondering if there are any examples out there on how to use the Messenger class to handle dialog communication. Thanks. – DanThMan Sep 6 at 18:35

7 Answers

vote up 9 vote down check

Hi everyone,

You should use a mediator for this. Mediator is a concept introduced by the WPF Disciples. It's a paradigm of type Register/Notify and enables your ViewModel and Views to communicate through a low-coupled messaging mecanism.

You should check out the google WPF Disciples group, and just search for Mediator. You will be much happy with the answers...

You can however start with this:

http://joshsmithonwpf.wordpress.com/2009/04/06/a-mediator-prototype-for-wpf-apps/

Enjoy !

link|flag
1  
Marlon grech has just posted a brand new implementation of the mediator: marlongrech.wordpress.com/2009/04/… – Roubachof Apr 17 at 13:54
2  
Just a remark : the Mediator pattern was not introduced by the WPF Disciples, it's a classical GoF pattern... (dofactory.com/Patterns/PatternMediator.aspx/…). Nice answer otherwise ;) – Thomas Levesque Jun 26 at 8:17
True! My mistake... – Roubachof Jun 29 at 9:43
vote up 3 vote down

I suggest foregoing the 1990's modal dialogs and instead implementing a control as an overlay (canvas+absolute positioning) with visibility tied to a boolean back in the VM. Closer to an ajax type control.

This is very useful:

<BooleanToVisibilityConverter x:Key="booltoVis" />

as in:

<my:ErrorControl Visibility="{Binding Path=ThereWasAnError, Mode=TwoWay, Converter={StaticResource booltoVis}, UpdateSourceTrigger=PropertyChanged}"/>

Here's how I have one implemented as a user control. Clicking on the 'x' closes the control in a line of code in the usercontrol's code behind. (Since I have my Views in an .exe and ViewModels in a dll, I don't feel bad about code that manipulates UI.)

Wpf dialog

link|flag
Very nice! Upvoted :) – Thomas Bratt Nov 20 at 10:11
vote up 2 vote down

A good MVVM dialog should:

  1. Be declared with only XAML.
  2. Get all of it's behavior from databinding.

Unfortunately, WPF doesn't provide these features. Showing a dialog requires a code-behind call to ShowDialog(). The Window class, which supports dialogs, can't be declared in XAML so it can't easily be databound to the DataContext.

To solve this, I wrote a XAML stub control that sits in the logical tree and relays databinding to a Window and handles showing and hiding the dialog. You can find it here: http://www.codeproject.com/KB/WPF/XAMLDialog.aspx

It's really simply to use and doesn't require any strange changs to your ViewModel and doesn't require events or messages. The basic call looks like this:

<dialog:Dialog Content="{Binding Path=DialogViewModel}" Showing="True" />

You probably want to add a style that sets Showing. I explain it in my article. I hope this helps you.

link|flag
vote up 1 vote down

I think that the handling of a dialog should be the responsibility of the view, and the view needs to have code to support that.

If you change the ViewModel - View interaction to handle dialogs then the ViewModel is dependant on that implementation. The simplest way to deal with this problem is to make the View responsible for performing the task. If that means showing a dialog then fine, but could also be a status message in the status bar etc.

My point is that the whole point of the MVVM pattern is to separate business logic from the GUI, so you shouldn't be mixing GUI logic (to display a dialog) in the business layer (the ViewModel).

link|flag
The VM would never handle the dialog, in my example it would simpy have an event that would require the dialog to fire up and pass back info in some form of EventArgs. If the view is responsible, how does it pass back info to the VM? – Ray Booysen Jan 18 at 9:38
Say the VM needs to delete something. The VM calls a method on the View Delete which returns a boolean. The View can then either delete the item directly and return true, or show a confirmation dialog and return true/false depending on the users answer. – Cameron MacFarland Jan 18 at 9:50
The VM knows nothing about the dialog but only asked the view to delete something, which the view either confirmed or denied. – Cameron MacFarland Jan 18 at 9:50
I always thought that the point of MVVM was Model: business logic, ViewModel: GUI logic and View: no logic. Which is somehow contradicted by your last paragraph. Please explain! – David Schmitt Jan 18 at 10:10
It asks the view to delete something? Surely the other way around. – Ray Booysen Jan 18 at 10:47
show 2 more comments
vote up 0 vote down

I was pondering a similar problem when asking how the view model for a task or dialog should look like.

My current solution looks like this:

public class SelectionTaskModel<TChoosable> : ViewModel
    where TChoosable : ViewModel
{
    public SelectionTaskModel(ICollection<TChoosable> choices);
    public ReadOnlyCollection<TChoosable> Choices { get; }
    public void Choose(TChoosable choosen);
    public void Abort();
}

When the view model decides that user input is required, it pulls up a instance of SelectionTaskModel with the possible choices for the user. The infrastructure takes care of bringing up the corresponding view, which in proper time will call the Choose() function with the user's choice.

link|flag
vote up 0 vote down

Hi Ray,

I struggled with the same problem. I have come up with a way to intercommunicate between the View and the ViewModel. You can initiate sending a message from the ViewModel to the View to tell it to show a messagebox and it will report back with the result. Then the ViewModel can respond to the result returned from the View.

Here is my blog explaining this:

http://jacokarsten.wordpress.com/2009/03/27/mvvm-intercommunication-between-view-and-viewmodel/

Please let me know what you think.

Jaco

link|flag
vote up 0 vote down

I think the view could have code to handle the event from the view model.

Depending on the event/scenario, it could also have an event trigger that subscribes to view model events, and one or more actions to invoke in response.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.