Silverlight Toolkit 错误:“属性值控件无效:属性 TargetType 的 LongListSelector”
当我添加工具包对象并运行应用程序时,我总是遇到相同的错误:属性值控件无效:属性 TargetType 的 LongListSelector。 [Line: 440 Position: 12]
,datepicker、timepicker 或 switch 都没关系,有什么问题吗?
这是日期选择器xaml: Controls:DatePicker x:Name="DatePicker" Margin="119,260,0,0">
Whem im add a toolkits objects and run app i always have the same error: Invalid attribute value controls:LongListSelector for property TargetType. [Line: 440 Position: 12]
, datepicker, timepicker, or switch doesn't matter, whats a problem?
here is datepicker xaml: Controls:DatePicker x:Name="DatePicker" Margin="119,260,0,0"></Controls:DatePicker>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
听起来您缺少 Silverlight Toolkit 控件的 XML 命名空间声明。如果您使用 controls 前缀,则需要以下内容:
注意: XML 命名空间声明区分大小写,因此您不能使用 Controls,只是控制
It sounds like you are missing the XML namespace declaration for the Silverlight Toolkit controls. If you are using the controls prefix, then you need the following:
NOTE: XML namespace declarations are case sensitive, so you cannot use Controls, just controls
从 NuGet 下载最后一个手机工具包将解决该问题。
Downloading the last phone toolkit from NuGet will fix the problem.
也许您正在将 2011 年 8 月版本的工具包与旧的 Windows Phone 开发人员工具一起使用?
2011 年 8 月版本专用于 7.1 SDK(“Mango”),因此您应该将 7.1 SDK 与 August Build 一起使用,或者将旧 SDK 与 2011 年 2 月构建。
Maybe you are using the August 2011 Build of the Toolkit together with the old Windows Phone Developer Tools?
The August 2011 Build is dedicated for the 7.1 SDK ("Mango"), so you should either use the 7.1 SDK with the August Build OR use the old SDK with the February 2011 Build.