I currently have a main View with a Button and a ContentPresenter which is bound to a property of the ViewModel which is another View (and associated ViewModel). Is there way to route a command from the a handler declared in the control loaded in the ContentPresenter? My reason for this is the main View contains the tool bar and the content presenter has the content. I am using the Microsoft MVVM template and the generated DelegateCommand class.
<Window ...>
<Button x:Name="btnAction" Command="{Binding ActionCommand}" />
<ContentPresenter Content="{Binding CurrentView}" />
</Window>