There are several approaches to that.
You can define a dialog/navigation/window service interface, defined in the ViewModels project. You will need to decide how the ViewModels will express which window they want to open. I generally use a IDialogViewModel interface, which some of my ViewModels implement, and pass an instance of the ViewModel to the service, but you can use a enum, string, whatever you want, so your implementation can map to the real window which will be opened.
For example:
public interface IDialogService
{
bool? ShowDialog(object dialogViewModel);
}
ViewModels that want to open new Windows would receive an instance of that service and use it to express the intention of opening a Window. In your Views project you would define a type which implements your service interface, with the real logic behind opening the Window.
Following the example:
public class DialogService : IDialogService
{
private Stack<Window> windowStack = new Stack<Window>();
public DialogService(Window root)
{
this.windowStack.Push(root);
}
public bool? ShowDialog(object dialogViewModel)
{
Window dialog = MapWindow(dialogViewModel);
dialog.DataContext = dialogViewModel;
dialog.Owner = this.windowStack.Peek();
this.windowStack.Push(dialog);
bool? result;
try
{
result = dialog.ShowDialog();
}
finally
{
this.windowStack.Pop();
}
return result;
}
}
Your main project will be responsable for creating and injecting the dialog service in the ViewModels who need it. In the example, the App would create a new dialog service instance passing the MainWindow to it.
A similar approach to do it would be using some form of the messaging pattern (link1 link2 ).
In addition, if you want something simple you can also make your ViewModels raise events when they want to open Windows and let the Views subscribe to them.
EDIT
The complete solution that I use in my apps a generally a bit more complex, but the idea is basically that. I have a base DialogWindow, which expects a viewmodel which implements a IDialogViewModel interface as DataContext. This interface abstract some funcionalities you expect in dialog, like accept/cancel commands as well as a closed event so you can also close the window from the viewmodel. The DialogWindow consists basically in a contentpresenter which Content property is bound to the DataContext and hooks the close event when the datacontext is changed (and a few other things).
Each "dialog" consists in a IDialogViewModel and a associated View (UserControl). To map them, I just declare implict DataTemplates in the resources of the App. In the code I've shown, the only difference would be there wouldn't be a method MapWindow, the window instance would always be a DialogWindow.
I use an additional trick to reuse layout elements between dialogs. On approach is to include them in the DialogWindow (accep/cancel buttons, etc). I like to keep the DialogWindow clean (so I can use it event to "non-dialog" dialogs). I declare a template for a ContentControl with the commom interface elements, and when I declare a View-ViewModel mapping template, I wrap the View with a ContentControl with my "dialog template" applied. You can then have as much "Master templates" for your DialogWindow as you want (like a "wizard like" one, for example).