全屏模式下的 Windows Phone ListPicker 不显示项目值
我刚刚开始使用 WP 7.1。我在 msdn 上尝试了 C# LocalDatabaseSample (http:// /msdn.microsoft.com/en-us/library/hh286405%28v=vs.92%29.aspx)。 我尝试修改列表选择器(在 AddNewItem 屏幕中)以让用户从列表中选择一个项目。当列表中有 3 个项目时效果很好。但是,当有大约 30 个项目时,列表选择器会进入全屏模式,并且不会显示项目值,而是显示类似“LocalDatabaseSample.Model.ToDoCategory”的内容。
我该如何解决这个问题?谢谢。
I've just started with WP 7.1. I tried the C# LocalDatabaseSample on msdn (http://msdn.microsoft.com/en-us/library/hh286405%28v=vs.92%29.aspx).
I tried to modify the Listpicker (in the AddNewItem sreen) to let the user choose an item from a list. It works well when there are 3 items in the list. However, when there are about 30 items, the Listpicker goes to fullscreen mode, and it does not show the item value, but something like "LocalDatabaseSample.Model.ToDoCategory".
How do I fix this? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该考虑重新模板化列表选择器的
FullModeItemTemplate
和/或覆盖模型上的ToString
。You should look at retemplating the
FullModeItemTemplate
for the listpicker and/or overridingToString
on your model.