ListPicker - how to make the current selection when a full pageview is opened

I am using ListPicker from the latest Silverlight Toolkit on Mango

I have a long list (100 elements) of simple text elements for selection - using the single element selection mode.

When I click on ListPicker, it opens in full screen mode very well, but it does not scroll to the current selection.

This is a pain for the user who usually wants to switch from "item75" to "item76"

I looked at the available properties, events, and source code, but I don’t see any obvious way to get the list for scrolling the currently selected item into the list when I open full screen mode.

Does anyone have any ideas?

+4
source share
2 answers

There seemed to be no way to do this with the current version, but the code is open source.

The current release also has the drawback of using StackPanel instead of VirtualizingStackPanel - so it displays long lists very slowly.

Instead of using this version, I ended up working with another selector list http://priyarules.posterous.com/categorized-list-selector-for-windows-phone-7

0
source

I found this that can help, I hope so! in Depth ListPicker

Look at MSDN which of the events that can be triggered when you select a Listpicker and communicate with them, you can find a very good solution! :)

+1
source

All Articles