XAML错误:不知道如何检测何时激活/停用ReactiveUI.RoutedViewHost

时间:2018-07-27 11:30:11

标签: wpf xaml reactiveui

我正在尝试将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。

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

这可能与以下错误有关:

https://github.com/reactiveui/ReactiveUI/issues/1696

仅与设计师相关吗?