我刚开始使用xamarin来玩它,并认为xamarin表格将是一个开始学习的好地方。 我开始学习本教程: https://developer.xamarin.com/guides/xamarin-forms/templates/control-templates/creating/
有一行如下:
contentView.ControlTemplate = (originalTemplate) ? tealTemplate : aquaTemplate;
我遇到的问题是我的本地代码说ContentView不包含ControlTemplate的定义。
文档中唯一与xamarin相关的使用声明是:
using Xamarin.Forms
;
我在课程顶部还有以下声明:
ControlTemplate mainTemplate = new ControlTemplate(typeof(MainTemplate));
这有错误'无法找到ControlTemplate的类型或命名空间'
当我尝试重建时,它会将其视为一个错误,因此它不仅仅是VS 2015变慢。 我昨天下载了xamarin。 我的JDK是1.7.0_55。 我的android SDK昨天下载了(不知道在哪里可以找到版本) 我的android NDk是版本r10e。
任何建议都表示赞赏。
由于
答案 0 :(得分:0)
在VS中使用Nuget管理器以确保您拥有最新版本的Xamarin Forms软件包。