我正在尝试将RoutedViewHost添加到我的视图:
<Window x:Class="MyNamespace"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:MyNamespace"
xmlns:rxui="http://reactiveui.net"
mc:Ignorable="d"
Title="MyView" Height="450" Width="800" WindowStyle="None">
<rxui:RoutedViewHost x:Name="routedViewHost"
Grid.Row="1"
Grid.ColumnSpan="3">
<rxui:RoutedViewHost.DefaultContent>
</rxui:RoutedViewHost.DefaultContent>
</rxui:RoutedViewHost>
</Window>
但是我得到一个错误:
不知道如何检测何时激活/停用ReactiveUI.RoutedViewHost,您可能需要实现IActivationForViewFetcher
目前尚不清楚究竟应该实现IActivationForViewFetcher。
我该如何解决这个问题?