The referenced component ‘Microsoft.Phone.Controls.Toolkit’ could not be found?
It’s here though?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It looks like the problem is that you’re trying to reference a copy of the
Microsoft.Phone.Controls.Toolkit.dll in yourReffolder, but Visual Studio is probably looking for somewhere else.If you open Visual Studio and expand the References folder in the Solution Explorer, you’ll probably see that
Microsoft.Phone.Controls.Toolkitis listed but marked with a yellow warning icon.Try right clicking that and clicking Remove. Then right click on References, browse to file in your
Reffolder, and re-add it.Update: The
ListPickeris a control in the Silverlight Toolkit for Windows Phone, which is an add in set of controls published by Microsoft. That’s the reference you just added back into your app.When you add a control to the page, you need to add a reference to the .dll to the XAML page and map it to a prefix that will tell Visual Studio where to find the control:
Note the
toolkitprefix.Now you can add a control like this:
If those items are set up correctly, you might also need to check if the .dll was “blocked” when you downloaded it. Browse to the .dll in Explorer, then right click and look at the bottom for a button called Unblock. If it’s there, click it.
The references in the XAML can be tricky to set up. There’s a sample app available for the toolkit that can be helpful.