I'm trying to use the ListPicker controller with ListPickerMode="Full", to get the fullscreen pick window. However it just generate an error when i try

"A first chance exception of type 'System.Windows.Markup.XamlParseException' occurred in System.Windows.dll

Additional information: Set property 'Microsoft.Phone.Controls.ListPicker.ListPickerMode' threw an exception. [Line: 49 Position: 57]"

Here's my code:

<toolkit:ListPicker x:Name="OutputSelector" ListPickerMode="Full"   
Margin="0,542,6,0" Header="Output Type" Width="450" VerticalAlignment="Top" />

I populate my ListPicker in C# using a list to set as ItemSource if that is any help. Another thing is that when i try to write "ListPickerMode" in xml it doest give it as an option, but when i have written the whole thing it suggest "Full" "expanded" and "Normal".

If i add 5 items to the ListPicker it automatically uses FullMode, and i have tried changing ItemCountThreshold="0" but that just generate more errors.

I'm using Windowns Phone 7.1 OS 2011 aug release.

It's probably just me that is stupid, first day with Windows Phone programing :)

UPDATE!

Well it looks like ItemCountThreshold & ListPickerMode was remove for 7.1 or something, atleast in XAML part, not the C# part, where they are read only.

Solution for my problem!

<toolkit:ListPicker x:Name="OutputSelector" ExpansionMode="FullScreenOnly"   
Margin="0,542,6,0" Header="Output Type" Width="450" VerticalAlignment="Top" />

The ExpansionMode will make the Listpicker appear in fullscreen or expanded.

link|improve this question
1  
you can answer your own question, by providing an answer and then marking it – pivotnig Mar 11 at 11:22
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.