Clue
Clue

Reputation: 119

Referencing Silverlight Toolkit for WP7

I am developing a 7.1 App for the Windows Phone device. I downloaded the latest silverlight toolkit, which is version 5.

However, when I try to add a reference to my Solution (In this case the System.Windows.Controls.DataVisualization.Toolkit) I get following error:

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

My XAML header goes like:

<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"

Upvotes: 0

Views: 493

Answers (1)

Andras Csehi
Andras Csehi

Reputation: 4305

You downloaded the wrong toolkit.

This is what you are looking for: Windows Phone Toolkit

Upvotes: 1

Related Questions