我无法从一个用户控件导航到另一个视图。
从视图中我可以使用以下代码进行导航
<DataGrid.InputBindings>
<MouseBinding Command="{Binding DataContext.NavCommand,RelativeSource={RelativeSource AncestorType={x:Type Window}}}"
MouseAction="LeftDoubleClick"
CommandParameter="historyimage"/>
Navcommand是导航视图的命令。 Navcommand位于mainwindowviewmodel中。现在我必须从另一个viewmodel调用该命令。
但我不知道如何从viewmodel重定向。