如何在wpf中实现windows phone风格的组合框

时间:2015-04-16 17:27:45

标签: c# wpf combobox windows-phone

我按照这个SO question创建了一个平面样式的组合框。它工作正常。

我想用windows phone类型的动画效果实现组合框。 我该怎么做?有人可以帮我这个吗?

1 个答案:

答案 0 :(得分:0)

如果您真的想为WP8应用程序制作组合框,则必须安装Windows Phone Toolkit

安装说明在他们的网站上。您可以get it from NuGetdownload the source

安装完成后,您必须在xaml中添加命名空间:

xmlns:toolkit="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls.Toolkit"

然后您可以像这样创建ListPicker

<toolkit:ListPicker ItemSource="{Binding YourBindingForList}" />

我希望它会对你有所帮助。