在类型 WebViewExtension 中找不到可附加的 属性 HtmlSource

The attachable property HtmlSource was not found in type WebViewExtension

我在 Callisto 找到了 WebView 作为 WebViewExtension 方法的来源。同样的方法在 windows 8.1 应用程序中工作正常,现在当我尝试在通用 windows 应用程序中使用时,它给了我这个错误。

The attachable property HtmlSource was not found in type WebViewExtension

我正在使用这种语法在用户控件中使用它。

<WebView x:Name="ContentView"
Margin="15,10,10,10"
callisto:WebViewExtension.HtmlSource="{Binding SelectedFeedItem.Content}"/>

WebViewExtension 方法的来源是 here

更新: 只是为了确保我没有弄乱我的 xmlns 声明。
1. 我有一个公共文件夹 common,在里面我有一个名为 Callisto.cs 的 class 文件,复制了相同的源文件并且没有更改。
2. 在我的 xmlns: 声明中我有 xmlns:callisto="Myrssapp.Win10.Common" 下面是图像。

我发现了我的问题,但我不知道为什么它在 Win 8 中有效,或者我一定是做了一些更改。错误在 xmlns: 语句中。

而不是
xmlns:callisto="Myrssapp.Win10.Common"

应该是 xmlns:callisto="using:Myrssapp.Win10.Common"
我错过了 using 关键字。