升级到Xamarin Forms 2.0后,为什么会出现此错误?

时间:2015-12-15 19:39:54

标签: c# visual-studio xamarin xamarin-forms

对于上下文,我在Xamarin Forms中创建一个活动指示器,它会调出一个新的透明页面,以阻止用户交互。

无论如何,

Xamarin Forms 1.3的一切都很好,但是当我升级到XF 2.0时,我遇到了这个问题。

enter image description here

这是我的Xaml背后的代码

enter image description here

ModalSpinnerPage enter image description here

从自动生成的类中,看起来Xamarin认为我的ModalSpinnerPage是Xamarin Forms的成员(虽然它显然不是)

enter image description here

同样,我的问题是在Xamarin表单升级后,Xamarin认为我的ModalSpinnerPage是Xamarin Forms的成员。升级之前一切都很好。对此的任何帮助都会很棒。感谢

2 个答案:

答案 0 :(得分:0)

您需要添加正确的命名空间:

<sp:ModalSpinnerClass xmlns:sp="clr-namespace:XSpinner.FormsPlugin;assembly=XSpinner.PutHereCorrectAssemblyPath" /* the rest of properties */>

</sp:ModalSpinnerClass>

这是一个工作示例(使用自定义页面作为基础):link

答案 1 :(得分:0)

以下代码可以使用:

<ModelSpinner:ModelSpinnerPage xmlns="http://xamarin.com/schemas/2014/forms"
         xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
         xmlns:ModelSpinner="clr-namespace:XSpinner.FormsPlugin"
         x:Class="XSpinner.FormsPlugin.ModelPageSpinner">
</ModelSpinner>