I have problems adding a LongListSelector via code in Silverlight. Here is the code:

PivotItem pi = new PivotItem();
pi.Header = r.Recipe_Title;

LongListSelector lls = new LongListSelector();
lls.Background = new SolidColorBrush(Colors.Transparent);
lls.ItemTemplate = App.Current.Resources["CheckboxShoppingItemTemplate"] as DataTemplate;
lls.ListHeaderTemplate = App.Current.Resources["citiesListHeader"] as DataTemplate;
lls.GroupFooterTemplate = App.Current.Resources["citiesListFooter"] as DataTemplate;
lls.GroupHeaderTemplate = App.Current.Resources["groupHeaderTemplate"] as DataTemplate;
lls.GroupItemTemplate = App.Current.Resources["groupItemTemplate"] as DataTemplate;
lls.ItemsSource = r.Ingredients;
pi.Content = lls;

The pivot header appears but the list doesn't. I only see the list's Header but nothing else. The footer is also missing although it is correct (i've replaced the header with the footer to see if it is correct, and it is).

link|improve this question

Have you verified that your App.Current.Resources["x"] is not null? – Claus Jørgensen Nov 9 '11 at 16:02
they are not null.. the exact same templates work if i introduce them in xaml – Badescu Alexandru Nov 9 '11 at 22:06
Which version of the Silverlight Toolkit do you use? There seem to be problems with older versions: stackoverflow.com/questions/7085781/… – Heinrich Ulbricht Nov 9 '11 at 23:13
i have the last one: August 2011 – Badescu Alexandru Nov 10 '11 at 7:00
feedback

1 Answer

http://www.windowsphonegeek.com/articles/wp7-longlistselector-in-depth--part1-visual-structure-and-api

this should help u.. the content is really good..

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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