I have a ListBox populated with data coming from XML. Fine so far, the problem is that I get some errors when I try to tombstone it.

protected override void OnNavigatedFrom(System.Windows.Navigation.NavigationEventArgs e)
    {
        State["listbox1"] = listBox1.ItemsSource;
    }

Then:

protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)
    {
        if (State.ContainsKey("listbox1"))
        {
            listBox1.ItemsSource = (IEnumerable)State["listbox1"];
        }
    }

When I hit the start button I already get an error. The App.xaml.cs opens and the line below becomes yellow

System.Diagnostics.Debugger.Break();

I've also used tombstoning helper but it did not return the items in my listbox.

link|improve this question

1  
What type of item? Is it serializable? – William Melani Nov 29 '11 at 19:36
2  
BRB, getting my magic exception 8 ball. – Will Nov 29 '11 at 21:38
feedback

1 Answer

up vote 0 down vote accepted

What is the listbox bound to? And what error are you seeing?

If it's a DataServiceCollection, you may have tracking turned on & you cannot put it flatly in Isolated Storage or State dictionaries. Should be fine if using ObservableCollection.

Thanks!

link|improve this answer
No error is shown, only that line turns yellow. The listbox is bound to data coming from a xml: var tab = from c in xml.Descendants("tbody").Descendants("tr") ... listBox1.ItemsSource = tab; – Diego Vin Nov 30 '11 at 0:16
How about you try serializing "tab" on its own. Can you put that in State dictionary? – samidip Nov 30 '11 at 1:32
I tryed to, but I can not access it. Its is a local variable inside an openReadCompleted method... – Diego Vin Nov 30 '11 at 11:49
Seems like I cant do anything like this: State["list"] = ienumerable type variable. ANy ideias would be nice – Diego Vin Nov 30 '11 at 13:53
Yes I should be able to. Let's do this .. define an ObservableCollection<T> at class level .. where T could be generic like string or a custom class. Then fill up the collection on your Completed method & then try putting the collection in State. – samidip Nov 30 '11 at 13:59
show 6 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.