I am working with a ListPicker for Windows Phone. The goal is to make the list open up in full mode. Right now, the application crashes whenever the ListPicker is selected:
<toolkit:ListPicker Name="list" SelectionChanged="moduleList_SelectionChanged" Tap="moduleList_Tap">
<toolkit:ListPickerItem Name="item1" Content="Item 1"/>
<toolkit:ListPickerItem Name="item2" Content="Item 2"/>
<toolkit:ListPickerItem Name="item3" Content="Item 3"/>
<toolkit:ListPickerItem Name="item4" Content="Item 4"/>
<toolkit:ListPickerItem Name="item5" Content="Item 5"/>
<toolkit:ListPickerItem Name="item6" Content="Item 6"/>
</toolkit:ListPicker>
I know that binding a list is one possible solution, but it appears that doing that breaks the enable/disableInList functions and makes a lot of code very messy. Is there another way to make this work?
Exceptionthat is thrown? What does yourTapcode look like? - Oren