我正在使用 WP7 工具包导入。我已经阅读了很多类似的问题,但似乎没有任何效果。
我正在尝试将 WP7 工具包用于带有 Microsoft Visual Studio 2010 express for windows Phone 的 7.1 项目。
一切似乎都很简单,我按照所有说明进行操作:http: //www.codebadger.com/blog/post/2010/11/01/WP7-Tip-of-the-Day-Silverlight-Toolkit-Gestures.aspx
所以,我现在拥有的是
仪表板.xaml
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:toolkit="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls.Toolkit"
mc:Ignorable="d" d:DesignHeight="768" d:DesignWidth="480"
仪表板.xaml.cs
using Microsoft.Phone.Shell;
using Microsoft.Phone.Controls.Toolkit;
当然,我已经安装了Silverlight for Windows Phone Toolkit - Nov 2011.msi 在此处下载 http://silverlight.codeplex.com/releases/view/75888
我通过右键单击Reference -> Add Reference 添加了引用,并添加了我在
C:\Program Files (x86)\Microsoft SDKs\Windows Phone\v7.1\Toolkit\Oct11\Bin
但我仍然有标题中提到的错误
命名空间“Microsoft.Phone.Controls”中不存在类型或命名空间名称“Toolkit”(您是否缺少程序集引用?)
有谁知道如何使它工作?