As of 2015 is Prism the only choice for view injection? A lot of what i have been reading on prism has been dated by 5 years or so. Before I make the plunge into learning this framework i want to consider all my options. Is there anything comparable to Prism as far as view injection is concerned?
View Injection in a WPF application
1.7k Views Asked by poco AtThere are 2 best solutions below

First of all, you don't need any framework to do view injection. prism is just one example of how it could be done. Personally, I like prism.mvvm, but I would avoid prism. It's good for learning pattern and practices, tought.
I will describe another approach called viewmodel first:
It's called viewmodel first because viewmodel is always created first and view is then selected based on naming convention or whatever logic.
Instead of injecting partial view into shell view, I inject partial viewmodel into shell viewmodel and partial view for the injected viewmodel is then created when needed.
Sample scenario:
Let's say I have main window with tabcontrol and I want to inject tabs.
In shell viewmodel I define Tabs collection (their viewmodels), that will contain injected tabs.
public class MainWindowViewModel
{
public MainWindowViewModel()
{
Tabs = new ObservableCollection<ITab>();
}
public ObservableCollection<ITab> Tabs { get; private set; }
}
public interface ITab
{
string Header { get; }
}
In MainWindow.xaml I display them using converter that creates view from viewmodel
<TabControl ItemsSource="{Binding Tabs}">
<TabControl.ItemContainerStyle>
<Style TargetType="TabItem">
<Setter Property="Header" Value="{Binding Header}" />
</Style>
</TabControl.ItemContainerStyle>
<TabControl.ItemTemplate>
<DataTemplate>
<ContentPresenter Content="{Binding Converter={StaticResource ViewModelToViewConverter}}"/>
</DataTemplate>
</TabControl.ItemTemplate>
</TabControl>
Example of ViewModelToViewConverter can be found here: https://stackoverflow.com/a/31721236/475727
Now the only thing you have to do is to inject tabs into Tabs collection. For example pass the collection to your modules and the module will inject the tabs.
As an alternative for injection, you can use discovery. You simply discovers all classes that implements ITab interface, instantiate them and add to the Tabs collection.
Advantages:
- You dont have to deals with strings like when using RegionManager from prism.
- You can easily test the viewmodels, including shellviewmodel
- You are not depended on any framework.
MVVM light is more... light, and easy to use. For dynamic injection, it's just a trigger on source (for load an object in modelview) and a raiseProperty on destinations controls.
in my case, i use a messenger