我刚刚在http://silverlight.codeplex.com/releases/view/75888下载了nov11的silverlight工具箱,以便能够在我的windows phone 7应用程序中使用ListPicker。我安装它然后启动Visual Studio 2010 for Windows phone但是当我尝试使用ListPicker时,似乎这不可用。 为了安装工具包,我需要做些什么才能使用它的功能?
事先提前答案 0 :(得分:5)
右键单击解决方案树中的References文件夹,您需要添加对Microsoft.Phone.Controls.Toolkit
的引用。在要使用工具包的Silverlight页面上,您需要添加对工具包程序集的引用:
xmlns:toolkit="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls.Toolkit"
然后你可以这样使用它:
<toolkit:WrapPanel Orientation="Horizontal" MaxWidth="410" />
答案 1 :(得分:1)
您也可以使用Nuget管理器将工具包添加到您的项目中,而不是下载它:http://windowsphonegeek.com/tips/How-to-install-Windows-Phone-Toolkit-Aug-2011-via-NuGet