I use a Listpicker in a Listbox inside a ScrollViewer. If the number of items in the Listpicker is 3 (or less than 3), the Listpicker opens as a ComboBox in the current page. But if the number of items is more than 3, it opens in another page, not as a ComboBox. How can I solve this problem?
Share
You can set number of items that as displayed on an other page by setting
ItemCountThresholdproperty of ListPicker. Eg. setting ItemCountThreshold=3 will force ListPicker to show items on new page when there are more then 3 items available to select.More info about ListPicker properties can be fount eg. here: ListPicker for WP7 in depth