0

我正在为 Windows Phone 设备开发一个 7.1 应用程序。我下载了最新的 silverlight 工具包,版本 5。

但是,当我尝试添加对我的解决方案的引用时(在这种情况下为System.Windows.Controls.DataVisualization.Toolkit),我收到以下错误:

A reference to a higher version or incompatible assembly cannot be added to the project

我的 XAML 标头如下:

<phone:PhoneApplicationPage x:Class="JOKR_Pivot.MainPage"
                            xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                            xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                            xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
                            xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
                            xmlns:controls="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls"

                            xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
                            xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
                            xmlns:local="clr-namespace:JOKR_Pivot"
                            xmlns:tilteffect="clr-namespace:JOKR_Pivot"
                            local:TiltEffect.IsTiltEnabled="True"
4

1 回答 1

1

您下载了错误的工具包。

这就是你要找的东西:Windows Phone Toolkit

于 2012-09-14T23:41:35.147 回答