I am using the Nov11 toolkit and was happy to see that the listpicker in scrollviewer was fixed. I am running across another issue concerning a selection of a listpicker item after returning from the fullscreen view. I created a class that has two strings and I am binding those two strings in two textbox that are to be displayed. When I load the application I see the correct values and when I click the listpicker I see everything like I want it. I run into an issue when I actually select a listpickeritem in the full mode. When the fullmode returns, I see for a split second that my selection is correct but then it reverts back to the listpickeritem at index 0. Is there something new that I have to add to my class to make this work?
My code can be viewed on StackOverflow here : http://stackoverflow.com/questions/8161441/listpicker-binding-issue-wp7
Comments: ** Comment from web user: gledford **
My code can be viewed on StackOverflow here : http://stackoverflow.com/questions/8161441/listpicker-binding-issue-wp7
Comments: ** Comment from web user: gledford **
Figured this one out. I have the ItemSource set in code in the Loaded function. The SelectedIndex of the listpicker must have been getting reset everytime I returned from the FullScreenView of the ListPicker. I just removed it from the Loaded function and added it to the constructor. This is not an issue.