Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When I try to set the property it crashes saying the value doesn't fall in range. It works when its -1, but when it changes to 0 it crashes. I'm trying to make the GridView item stay selected when the user navigates away from the page then back to it (in a Windows 8 app).

listDeckNames.SetValue(GridView.SelectedIndexProperty, (int)Global.selectedDeck);

Am I not allowed to do this or is there another solution?

<ListView x:Name="listDeckNames"
          HorizontalAlignment="Stretch" 
          Height="324" 
          Margin="0" 
          VerticalAlignment="top" 
          Width="663" 
          Background="#FF666666"   
          Canvas.Left="10" 
          SelectionChanged="listDeckNames_SelectionChanged" />

I tried switching to a ListView but it still crashes.

share|improve this question
Does the listDeckNames have any items? – Vlad L Dec 17 '12 at 17:47
Yes, it has two. I set the global variable based on the item that was selected by the user then store it for when the user navigates back to the page. – Aaron Kerti Dec 18 '12 at 14:29
Can you paste a larger code sample (it would be useful to know how you are setting the listDeckNames data source, and in which event you are setting the index). – Ross Dargan Dec 20 '12 at 12:14

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.